pg 1.3.5-x64-mingw32 → 1.4.0-x64-mingw32

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: 7965cb8a9df4211aebf7f99b750c0ef69dc83605910c85664df63eb5c7d588c7
4
- data.tar.gz: dea515def7a213a64bcf0b32a429560de2c9fedc83f6d2cfde346bbcb6f553b3
3
+ metadata.gz: 83b37ca50e2504612bd3949dc5a8f4a09561282652ded110e7c0a83056a4209d
4
+ data.tar.gz: 02f1b2fd8686b454964d742b9b23d392726866c7f3b569aa8cb06d3a8b044d84
5
5
  SHA512:
6
- metadata.gz: 2baa94ea0e464d83fa02fac4012c91f5e26d7b48b6535534ca7291668f37f1b91014996690a1e2ece295e31243d8673716fa7e7320b4a830b2bca91b7ec953eb
7
- data.tar.gz: ab595e6481dca8acb22ce66649c44b232a8b4dd72039bd1a1db80d5e3d3f3e6c9e32308e39aced78e25949e1c0361416dd9cfbea857f5f252dd5fbe1ebfc04b7
6
+ metadata.gz: f3d288d0865f663ce3433c4cb516c2f60162f2485b7f2f97cf9435c2cf3a46bb45cf4e1d52af89291d1c6f2340f1780d1074e97add4d78dc8d072c984cfbfc22
7
+ data.tar.gz: c25f6b288d8132619438a596b0046457a7cdcedc27710b0d3c4e1830639e5925687a38f51d4848c25b057d1cca97cf621022750c4057046295e9de1c1f3910a5
checksums.yaml.gz.sig CHANGED
Binary file
data/History.rdoc CHANGED
@@ -1,3 +1,27 @@
1
+ == v1.4.0 [YYYY-MM-DD] Lars Kanis <lars@greiz-reinsdorf.de>
2
+
3
+ Added:
4
+
5
+ - Add PG::Connection#hostaddr, present since PostgreSQL-12. #453
6
+ - Add PG::Connection.conninfo_parse to wrap PQconninfoParse. #453
7
+
8
+ Bugfixes:
9
+
10
+ - Try IPv6 and IPv4 addresses, if DNS resolves to both. #452
11
+ - Re-add block-call semantics to PG::Connection.new accidently removed in pg-1.3.0. #454
12
+ - Handle client error after all data consumed in #copy_data for output. #455
13
+ - Avoid spurious keyword argument warning on Ruby 2.7. #456
14
+ - Change connection setup to respect connect_timeout parameter. #459
15
+ - Fix indefinite hang in case of connection error on Windows #458
16
+ - Set connection attribute of PG::Error in various places where it was missing. #461
17
+ - Fix transaction leak on early break/return. #463
18
+ - Update Windows fat binary gem to OpenSSL-1.1.1o and PostgreSQL-14.4.
19
+
20
+ Enhancements:
21
+
22
+ - Don't flush at each put_copy_data call, but flush at get_result. #462
23
+
24
+
1
25
  == v1.3.5 [2022-03-31] Lars Kanis <lars@greiz-reinsdorf.de>
2
26
 
3
27
  Bugfixes:
data/Rakefile.cross CHANGED
@@ -31,8 +31,8 @@ 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.1m'
35
- self.postgresql_version = ENV['POSTGRESQL_VERSION'] || '14.2'
34
+ self.openssl_version = ENV['OPENSSL_VERSION'] || '1.1.1o'
35
+ self.postgresql_version = ENV['POSTGRESQL_VERSION'] || '14.4'
36
36
 
37
37
  # Check if symlinks work in the current working directory.
38
38
  # This fails, if rake-compiler-dock is running on a Windows box.
data/ext/extconf.rb CHANGED
@@ -1,5 +1,3 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
1
  require 'pp'
4
2
  require 'mkmf'
5
3
 
@@ -169,32 +167,3 @@ end
169
167
  create_header()
170
168
  create_makefile( "pg_ext" )
171
169
 
172
-
173
- def message!(important_message)
174
- message important_message
175
- if !$stdout.tty? && File.chardev?('/dev/tty')
176
- File.open('/dev/tty', 'w') do |tty|
177
- tty.print important_message
178
- end
179
- end
180
- rescue
181
- end
182
-
183
- if "2022-04-01" == Time.now.strftime("%Y-%m-%d")
184
- message! <<-EOM
185
- ===================================================================
186
- HEADS UP! Prepare for pg-1.4.2022 ! 🎉🎉🎉
187
-
188
- Now that psycopg3 has most of the features of ruby-pg, we plan to
189
- switch to using it as our foundation for the next pg release.
190
- It will run through pycall and requires a working python setup.
191
- This will minimize our development and maintenance efforts, since
192
- it allows us to use one and the same code base for both programming
193
- languages - ruby and python. 👏😃
194
-
195
- And we follow the recent merge of the Django and Rails teams! ❤️
196
-
197
- Stay up-to-date at https://github.com/ged/ruby-pg/issues/449
198
- ===================================================================
199
- EOM
200
- end