pg 1.3.4-x86-mingw32 → 1.4.1-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: 7c43a7eedd1ed47087a0125ae20c780498e451e96cca842cbb5ce75b31922e1e
4
- data.tar.gz: 464ea1a2cb643cdfe820d2f2a7a5653f44a934dffca9502fb48db78d4478f50b
3
+ metadata.gz: 76778e4d8d481861578ea02d5f722abda7f3f06d691efbc852616c0ecf1413cf
4
+ data.tar.gz: fde8ff4c2a14d46fcccb3307b6d1198757ed4f8b64bbf3ce8f5237e1c97c603b
5
5
  SHA512:
6
- metadata.gz: 0ee7268b176b4f8992f23c90e4b919c8aba56dae767a7bb05845ec269991851cf4f4dec58b147110b30476b59d105cf4a91047834639159819d7cd9961bceec0
7
- data.tar.gz: fbfbc3cccb24e894cd16b0e3b34843260502d909e62f0927b05df993bece18010b0e3e469ed1afdd5f4e77c6bd295c127c60c63dc83b1f4711d88ac6c23de91d
6
+ metadata.gz: a881f889485b205da00d4b15537b0311eff4a7394be049746c35065b3930b6fd10c8eb15a553e1d55851888fdf476fbe1691a9a3c56f28e83766ff1fa912adb9
7
+ data.tar.gz: ce0840b31f0f61c7e5c2ebf83ef988135006dd32c68295bc6e40e13fbfda899fa72133cda26651d9db608649c6c35d1a8d3f90203c21939f74f89872cd6b57fe
checksums.yaml.gz.sig CHANGED
@@ -1,2 +1,3 @@
1
- m��} �߽���Lr�>�Ow��\8↥?}4 �ۼ�Q���FКp۾r�%����w�AVk����7��a��XN���ѡ�e&,zK�IzX=�H�͵!p=��
2
- ַ>�Y�7 4`�����D����Ư��J���`���,OE�-�}�%���u�.�,
1
+ |6��fGh��?S�.l�5F�nF���滆s�-�طԘǷfk�v���[� ��8��2�%� n��q"nxĂF&no�vo��c2Ǟ��'1k/��#���
2
+ o�ռ���!�M��Y�sI3�
3
+ �? D_ܓ����+�^d�&��-a�`v';�0���Wd���^� -���޲q���� � �x��H�g*;����,\Ņ��LR��+�.9Y��=}����gQ'�rb���:[Ttt��I?�,z��� y��]b�G��6 � �% F��봜���7@�S�8v��R�pI.Y���
data/History.rdoc CHANGED
@@ -1,3 +1,54 @@
1
+ == v1.4.1 [2022-06-24] Lars Kanis <lars@greiz-reinsdorf.de>
2
+
3
+ Bugfixes:
4
+
5
+ - Fix another ruby-2.7 keyword warning. #465
6
+ - Allow PG::Error to be created without arguments. #466
7
+
8
+
9
+ == v1.4.0 [2022-06-20] Lars Kanis <lars@greiz-reinsdorf.de>
10
+
11
+ Added:
12
+
13
+ - Add PG::Connection#hostaddr, present since PostgreSQL-12. #453
14
+ - Add PG::Connection.conninfo_parse to wrap PQconninfoParse. #453
15
+
16
+ Bugfixes:
17
+
18
+ - Try IPv6 and IPv4 addresses, if DNS resolves to both. #452
19
+ - Re-add block-call semantics to PG::Connection.new accidently removed in pg-1.3.0. #454
20
+ - Handle client error after all data consumed in #copy_data for output. #455
21
+ - Avoid spurious keyword argument warning on Ruby 2.7. #456
22
+ - Change connection setup to respect connect_timeout parameter. #459
23
+ - Fix indefinite hang in case of connection error on Windows #458
24
+ - Set connection attribute of PG::Error in various places where it was missing. #461
25
+ - Fix transaction leak on early break/return. #463
26
+ - Update Windows fat binary gem to OpenSSL-1.1.1o and PostgreSQL-14.4.
27
+
28
+ Enhancements:
29
+
30
+ - Don't flush at each put_copy_data call, but flush at get_result. #462
31
+
32
+
33
+ == v1.3.5 [2022-03-31] Lars Kanis <lars@greiz-reinsdorf.de>
34
+
35
+ Bugfixes:
36
+
37
+ - Handle PGRES_COMMAND_OK in pgresult_stream_any. #447
38
+ Fixes usage when trying to stream the result of a procedure call that returns no results.
39
+
40
+ Enhancements:
41
+
42
+ - Rename BasicTypeRegistry#define_default_types to #register_default_types to use a more consistent terminology.
43
+ Keeping define_default_types for compatibility.
44
+ - BasicTypeRegistry: return self instead of objects by accident.
45
+ This allows call chaining.
46
+ - Add some April fun. #449
47
+
48
+ Documentation:
49
+ - Refine documentation of conn.socket_io and conn.connect_poll
50
+
51
+
1
52
  == v1.3.4 [2022-03-10] Lars Kanis <lars@greiz-reinsdorf.de>
2
53
 
3
54
  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.