pg 0.18.1 → 1.5.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data/.appveyor.yml +42 -0
- data/.gems +6 -0
- data/.github/workflows/binary-gems.yml +117 -0
- data/.github/workflows/source-gem.yml +141 -0
- data/.gitignore +22 -0
- data/.hgsigs +34 -0
- data/.hgtags +41 -0
- data/.irbrc +23 -0
- data/.pryrc +23 -0
- data/.tm_properties +21 -0
- data/.travis.yml +49 -0
- data/BSDL +2 -2
- data/Gemfile +17 -0
- data/History.md +901 -0
- data/Manifest.txt +8 -21
- data/README-Windows.rdoc +17 -28
- data/README.ja.md +300 -0
- data/README.md +286 -0
- data/Rakefile +43 -131
- data/Rakefile.cross +89 -70
- data/certs/ged.pem +24 -0
- data/certs/kanis@comcard.de.pem +20 -0
- data/certs/larskanis-2022.pem +26 -0
- data/certs/larskanis-2023.pem +24 -0
- data/certs/larskanis-2024.pem +24 -0
- data/ext/errorcodes.def +113 -0
- data/ext/errorcodes.rb +1 -1
- data/ext/errorcodes.txt +36 -2
- data/ext/extconf.rb +128 -55
- data/ext/gvl_wrappers.c +8 -0
- data/ext/gvl_wrappers.h +44 -33
- data/ext/pg.c +228 -202
- data/ext/pg.h +108 -99
- data/ext/pg_binary_decoder.c +164 -16
- data/ext/pg_binary_encoder.c +249 -22
- data/ext/pg_coder.c +189 -44
- data/ext/pg_connection.c +1889 -1195
- data/ext/pg_copy_coder.c +398 -42
- data/ext/pg_errors.c +1 -1
- data/ext/pg_record_coder.c +522 -0
- data/ext/pg_result.c +729 -234
- data/ext/pg_text_decoder.c +635 -52
- data/ext/pg_text_encoder.c +294 -130
- data/ext/pg_tuple.c +572 -0
- data/ext/pg_type_map.c +64 -23
- data/ext/pg_type_map_all_strings.c +21 -7
- data/ext/pg_type_map_by_class.c +59 -27
- data/ext/pg_type_map_by_column.c +86 -43
- data/ext/pg_type_map_by_mri_type.c +50 -21
- data/ext/pg_type_map_by_oid.c +62 -29
- data/ext/pg_type_map_in_ruby.c +59 -28
- data/ext/{util.c → pg_util.c} +13 -13
- data/ext/{util.h → pg_util.h} +3 -3
- data/lib/pg/basic_type_map_based_on_result.rb +67 -0
- data/lib/pg/basic_type_map_for_queries.rb +202 -0
- data/lib/pg/basic_type_map_for_results.rb +104 -0
- data/lib/pg/basic_type_registry.rb +303 -0
- data/lib/pg/binary_decoder/date.rb +9 -0
- data/lib/pg/binary_decoder/timestamp.rb +26 -0
- data/lib/pg/binary_encoder/timestamp.rb +20 -0
- data/lib/pg/coder.rb +36 -13
- data/lib/pg/connection.rb +813 -74
- data/lib/pg/exceptions.rb +16 -2
- data/lib/pg/result.rb +24 -7
- data/lib/pg/text_decoder/date.rb +18 -0
- data/lib/pg/text_decoder/inet.rb +9 -0
- data/lib/pg/text_decoder/json.rb +14 -0
- data/lib/pg/text_decoder/numeric.rb +9 -0
- data/lib/pg/text_decoder/timestamp.rb +30 -0
- data/lib/pg/text_encoder/date.rb +12 -0
- data/lib/pg/text_encoder/inet.rb +28 -0
- data/lib/pg/text_encoder/json.rb +14 -0
- data/lib/pg/text_encoder/numeric.rb +9 -0
- data/lib/pg/text_encoder/timestamp.rb +24 -0
- data/lib/pg/tuple.rb +30 -0
- data/lib/pg/type_map_by_column.rb +3 -2
- data/lib/pg/version.rb +4 -0
- data/lib/pg.rb +106 -41
- data/misc/openssl-pg-segfault.rb +31 -0
- data/misc/postgres/History.txt +9 -0
- data/misc/postgres/Manifest.txt +5 -0
- data/misc/postgres/README.txt +21 -0
- data/misc/postgres/Rakefile +21 -0
- data/misc/postgres/lib/postgres.rb +16 -0
- data/misc/ruby-pg/History.txt +9 -0
- data/misc/ruby-pg/Manifest.txt +5 -0
- data/misc/ruby-pg/README.txt +21 -0
- data/misc/ruby-pg/Rakefile +21 -0
- data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
- data/pg.gemspec +34 -0
- data/rakelib/task_extension.rb +46 -0
- data/sample/array_insert.rb +1 -1
- data/sample/async_api.rb +4 -8
- data/sample/async_copyto.rb +1 -1
- data/sample/async_mixed.rb +1 -1
- data/sample/check_conn.rb +1 -1
- data/sample/copydata.rb +71 -0
- data/sample/copyfrom.rb +1 -1
- data/sample/copyto.rb +1 -1
- data/sample/cursor.rb +1 -1
- data/sample/disk_usage_report.rb +6 -15
- data/sample/issue-119.rb +2 -2
- data/sample/losample.rb +1 -1
- data/sample/minimal-testcase.rb +2 -2
- data/sample/notify_wait.rb +1 -1
- data/sample/pg_statistics.rb +6 -15
- data/sample/replication_monitor.rb +9 -18
- data/sample/test_binary_values.rb +1 -1
- data/sample/wal_shipper.rb +2 -2
- data/sample/warehouse_partitions.rb +8 -17
- data.tar.gz.sig +0 -0
- metadata +135 -207
- metadata.gz.sig +0 -0
- data/ChangeLog +0 -5378
- data/History.rdoc +0 -297
- data/README.ja.rdoc +0 -14
- data/README.rdoc +0 -161
- data/lib/pg/basic_type_mapping.rb +0 -399
- data/lib/pg/constants.rb +0 -11
- data/lib/pg/text_decoder.rb +0 -42
- data/lib/pg/text_encoder.rb +0 -27
- data/spec/data/expected_trace.out +0 -26
- data/spec/data/random_binary_data +0 -0
- data/spec/helpers.rb +0 -355
- data/spec/pg/basic_type_mapping_spec.rb +0 -251
- data/spec/pg/connection_spec.rb +0 -1459
- data/spec/pg/result_spec.rb +0 -449
- data/spec/pg/type_map_by_class_spec.rb +0 -138
- data/spec/pg/type_map_by_column_spec.rb +0 -222
- data/spec/pg/type_map_by_mri_type_spec.rb +0 -136
- data/spec/pg/type_map_by_oid_spec.rb +0 -149
- data/spec/pg/type_map_in_ruby_spec.rb +0 -164
- data/spec/pg/type_map_spec.rb +0 -22
- data/spec/pg/type_spec.rb +0 -665
- data/spec/pg_spec.rb +0 -50
data/History.md
ADDED
@@ -0,0 +1,901 @@
|
|
1
|
+
## v1.5.6 [2024-03-01] Lars Kanis <lars@greiz-reinsdorf.de>
|
2
|
+
|
3
|
+
- Renew address resolution (DNS) in conn.reset. [#558](https://github.com/ged/ruby-pg/pull/558)
|
4
|
+
This is important, if DNS is used for load balancing, etc.
|
5
|
+
- Make bigdecimal an optional dependency. [#556](https://github.com/ged/ruby-pg/pull/556)
|
6
|
+
It's a gem in ruby-3.4+, so that users shouldn't be forced to use it.
|
7
|
+
|
8
|
+
|
9
|
+
## v1.5.5 [2024-02-15] Lars Kanis <lars@greiz-reinsdorf.de>
|
10
|
+
|
11
|
+
- Explicitly retype timespec fields to int64_t to fix compatibility with 32bit arches. [#547](https://github.com/ged/ruby-pg/pull/547)
|
12
|
+
- Fix possible buffer overflows in PG::BinaryDecoder::CopyRow on 32 bit systems. [#548](https://github.com/ged/ruby-pg/pull/548)
|
13
|
+
- Add binary Windows gems for Ruby 3.3.
|
14
|
+
- Update Windows fat binary gem to OpenSSL-3.2.1 and PostgreSQL-16.2.
|
15
|
+
|
16
|
+
|
17
|
+
## v1.5.4 [2023-09-01] Lars Kanis <lars@greiz-reinsdorf.de>
|
18
|
+
|
19
|
+
- Fix compiling the pg extension with MSVC 2022. [#535](https://github.com/ged/ruby-pg/pull/535)
|
20
|
+
- Set PG::Connection's encoding even if setting client_encoding on connection startup fails. [#541](https://github.com/ged/ruby-pg/pull/541)
|
21
|
+
- Don't set the server's client_encoding if it's unnecessary. [#542](https://github.com/ged/ruby-pg/pull/542)
|
22
|
+
This is important for connection proxies, who disallow configuration settings.
|
23
|
+
- Update Windows fat binary gem to OpenSSL-3.1.2 and PostgreSQL-15.4.
|
24
|
+
|
25
|
+
|
26
|
+
## v1.5.3 [2023-04-28] Lars Kanis <lars@greiz-reinsdorf.de>
|
27
|
+
|
28
|
+
- Fix possible segfault when creating a new PG::Result with type map. [#530](https://github.com/ged/ruby-pg/pull/530)
|
29
|
+
- Add category to deprecation warnings of Coder.new, so that they are suppressed for most users. [#528](https://github.com/ged/ruby-pg/pull/528)
|
30
|
+
|
31
|
+
|
32
|
+
## v1.5.2 [2023-04-26] Lars Kanis <lars@greiz-reinsdorf.de>
|
33
|
+
|
34
|
+
- Fix regression in copy_data regarding binary format when using no coder. [#527](https://github.com/ged/ruby-pg/pull/527)
|
35
|
+
|
36
|
+
|
37
|
+
## v1.5.1 [2023-04-24] Lars Kanis <lars@greiz-reinsdorf.de>
|
38
|
+
|
39
|
+
- Don't overwrite flags of timestamp coders. [#524](https://github.com/ged/ruby-pg/pull/524)
|
40
|
+
Fixes a regression in rails: https://github.com/rails/rails/issues/48049
|
41
|
+
|
42
|
+
|
43
|
+
## v1.5.0 [2023-04-24] Lars Kanis <lars@greiz-reinsdorf.de>
|
44
|
+
|
45
|
+
Enhancements:
|
46
|
+
|
47
|
+
- Better support for binary format:
|
48
|
+
- Extend PG::Connection#copy_data to better support binary transfers [#511](https://github.com/ged/ruby-pg/pull/511)
|
49
|
+
- Add binary COPY encoder and decoder:
|
50
|
+
* PG::BinaryEncoder::CopyRow
|
51
|
+
* PG::BinaryDecoder::CopyRow
|
52
|
+
- Add binary timestamp encoders:
|
53
|
+
* PG::BinaryEncoder::TimestampUtc
|
54
|
+
* PG::BinaryEncoder::TimestampLocal
|
55
|
+
* PG::BinaryEncoder::Timestamp
|
56
|
+
- Add PG::BinaryEncoder::Float4 and Float8
|
57
|
+
- Add binary date type: [#515](https://github.com/ged/ruby-pg/pull/515)
|
58
|
+
* PG::BinaryEncoder::Date
|
59
|
+
* PG::BinaryDecoder::Date
|
60
|
+
- Add PG::Result#binary_tuples [#511](https://github.com/ged/ruby-pg/pull/511)
|
61
|
+
It is useful for COPY and not deprecated in that context.
|
62
|
+
- Add PG::TextEncoder::Bytea to BasicTypeRegistry [#506](https://github.com/ged/ruby-pg/pull/506)
|
63
|
+
- Ractor support: [#519](https://github.com/ged/ruby-pg/pull/519)
|
64
|
+
- Pg is now fully compatible with Ractor introduced in Ruby-3.0 and doesn't use any global mutable state.
|
65
|
+
- All type en/decoders and type maps are shareable between ractors if they are made frozen by `Ractor.make_shareable`.
|
66
|
+
- Also frozen PG::Result and PG::Tuple objects can be shared.
|
67
|
+
- All frozen objects (except PG::Connection) can still be used to do communication with the PostgreSQL server or to read retrieved data.
|
68
|
+
- PG::Connection is not shareable and must be created within each Ractor to establish a dedicated connection.
|
69
|
+
- Use keyword arguments instead of hashes for Coder initialization and #to_h. [#511](https://github.com/ged/ruby-pg/pull/511)
|
70
|
+
- Add PG::Result.res_status as a class method and extend Result#res_status to return the status of self. [#508](https://github.com/ged/ruby-pg/pull/508)
|
71
|
+
- Reduce the number of files loaded at `require 'pg'` by using autoload. [#513](https://github.com/ged/ruby-pg/pull/513)
|
72
|
+
Previously stdlib libraries `date`, `json`, `ipaddr` and `bigdecimal` were static dependencies, but now only `socket` is mandatory.
|
73
|
+
- Improve garbage collector performance by adding write barriers to all PG classes. [#518](https://github.com/ged/ruby-pg/pull/518)
|
74
|
+
Now they can be promoted to the old generation, which means they only get marked on major GC.
|
75
|
+
- New method PG::Connection#check_socket to check the socket state. [#521](https://github.com/ged/ruby-pg/pull/521)
|
76
|
+
- Mark many internal constants as private. [#522](https://github.com/ged/ruby-pg/pull/522)
|
77
|
+
- Update Windows fat binary gem to OpenSSL-3.1.0.
|
78
|
+
|
79
|
+
Bugfixes:
|
80
|
+
|
81
|
+
- Move nfields-check of stream-methods after result status check [#507](https://github.com/ged/ruby-pg/pull/507)
|
82
|
+
This ensures that the nfield-check doesn't hide errors like statement timeout.
|
83
|
+
|
84
|
+
Removed:
|
85
|
+
|
86
|
+
- Remove deprecated PG::BasicTypeRegistry.register_type and co. [Part of #519](https://github.com/ged/ruby-pg/commit/2919ee1a0c6b216e18e1d06c95c2616ef69d2f97)
|
87
|
+
- Add deprecation warning about PG::Coder initialization per Hash argument. [#514](https://github.com/ged/ruby-pg/pull/514)
|
88
|
+
It is recommended to use keyword arguments instead.
|
89
|
+
- The internal encoding cache was removed. [#516](https://github.com/ged/ruby-pg/pull/516)
|
90
|
+
It shouldn't have a practical performance impact.
|
91
|
+
|
92
|
+
Repository:
|
93
|
+
|
94
|
+
- `rake test` tries to find PostgreSQL server commands by pg_config [#503](https://github.com/ged/ruby-pg/pull/503)
|
95
|
+
So there's no need to set the PATH manuelly any longer.
|
96
|
+
|
97
|
+
|
98
|
+
## v1.4.6 [2023-02-26] Lars Kanis <lars@greiz-reinsdorf.de>
|
99
|
+
|
100
|
+
- Add japanese README file. [#502](https://github.com/ged/ruby-pg/pull/502)
|
101
|
+
- Improve `discard_results` to not block under memory pressure. [#500](https://github.com/ged/ruby-pg/pull/500)
|
102
|
+
- Use a dedicated error class `PG::LostCopyState` for errors due to another query within `copy_data` and mention that it's probably due to another query.
|
103
|
+
Previously the "no COPY in progress" `PG::Error` was less specific. [#499](https://github.com/ged/ruby-pg/pull/499)
|
104
|
+
- Make sure an error in `put_copy_end` of `copy_data` doesn't lose the original exception.
|
105
|
+
- Disable nonblocking mode while large object calls. [#498](https://github.com/ged/ruby-pg/pull/498)
|
106
|
+
Since pg-1.3.0 libpq's "lo_*" calls failed when a bigger amount of data was transferred.
|
107
|
+
This specifically forced the `active_storage-postgresql` gem to use pg-1.2.3.
|
108
|
+
- Add rdoc options to gemspec, so that "gem install" generates complete offline documentation.
|
109
|
+
- Add binary Windows gems for Ruby 3.2.
|
110
|
+
- Update Windows fat binary gem to PostgreSQL-15.2 and OpenSSL-3.0.8.
|
111
|
+
|
112
|
+
|
113
|
+
## v1.4.5 [2022-11-17] Lars Kanis <lars@greiz-reinsdorf.de>
|
114
|
+
|
115
|
+
- Return the libpq default port when blank in conninfo. [#492](https://github.com/ged/ruby-pg/pull/492)
|
116
|
+
- Add PG::DEF_PGPORT constant and use it in specs. [#492](https://github.com/ged/ruby-pg/pull/492)
|
117
|
+
- Fix name resolution when empty or `nil` port is given.
|
118
|
+
- Update error codes to PostgreSQL-15.
|
119
|
+
- Update Windows fat binary gem to PostgreSQL-15.1 AND OpenSSL-1.1.1s.
|
120
|
+
|
121
|
+
|
122
|
+
## v1.4.4 [2022-10-11] Lars Kanis <lars@greiz-reinsdorf.de>
|
123
|
+
|
124
|
+
- Revert to let libpq do the host iteration while connecting. [#485](https://github.com/ged/ruby-pg/pull/485)
|
125
|
+
Ensure that parameter `connect_timeout` is still respected.
|
126
|
+
- Handle multiple hosts in the connection string, where only one host has writable session. [#476](https://github.com/ged/ruby-pg/pull/476)
|
127
|
+
- Add some useful information to PG::Connection#inspect. [#487](https://github.com/ged/ruby-pg/pull/487)
|
128
|
+
- Support new pgresult_stream_any API in sequel_pg-1.17.0. [#481](https://github.com/ged/ruby-pg/pull/481)
|
129
|
+
- Update Windows fat binary gem to PostgreSQL-14.5.
|
130
|
+
|
131
|
+
|
132
|
+
## v1.4.3 [2022-08-09] Lars Kanis <lars@greiz-reinsdorf.de>
|
133
|
+
|
134
|
+
- Avoid memory bloat possible in put_copy_data in pg-1.4.0 to 1.4.2. [#473](https://github.com/ged/ruby-pg/pull/473)
|
135
|
+
- Use Encoding::BINARY for JOHAB, removing some useless code. [#472](https://github.com/ged/ruby-pg/pull/472)
|
136
|
+
|
137
|
+
|
138
|
+
## v1.4.2 [2022-07-27] Lars Kanis <lars@greiz-reinsdorf.de>
|
139
|
+
|
140
|
+
Bugfixes:
|
141
|
+
|
142
|
+
- Properly handle empty host parameter when connecting. [#471](https://github.com/ged/ruby-pg/pull/471)
|
143
|
+
- Update Windows fat binary gem to OpenSSL-1.1.1q.
|
144
|
+
|
145
|
+
|
146
|
+
## v1.4.1 [2022-06-24] Lars Kanis <lars@greiz-reinsdorf.de>
|
147
|
+
|
148
|
+
Bugfixes:
|
149
|
+
|
150
|
+
- Fix another ruby-2.7 keyword warning. [#465](https://github.com/ged/ruby-pg/pull/465)
|
151
|
+
- Allow PG::Error to be created without arguments. [#466](https://github.com/ged/ruby-pg/pull/466)
|
152
|
+
|
153
|
+
|
154
|
+
## v1.4.0 [2022-06-20] Lars Kanis <lars@greiz-reinsdorf.de>
|
155
|
+
|
156
|
+
Added:
|
157
|
+
|
158
|
+
- Add PG::Connection#hostaddr, present since PostgreSQL-12. [#453](https://github.com/ged/ruby-pg/pull/453)
|
159
|
+
- Add PG::Connection.conninfo_parse to wrap PQconninfoParse. [#453](https://github.com/ged/ruby-pg/pull/453)
|
160
|
+
|
161
|
+
Bugfixes:
|
162
|
+
|
163
|
+
- Try IPv6 and IPv4 addresses, if DNS resolves to both. [#452](https://github.com/ged/ruby-pg/pull/452)
|
164
|
+
- Re-add block-call semantics to PG::Connection.new accidently removed in pg-1.3.0. [#454](https://github.com/ged/ruby-pg/pull/454)
|
165
|
+
- Handle client error after all data consumed in #copy_data for output. [#455](https://github.com/ged/ruby-pg/pull/455)
|
166
|
+
- Avoid spurious keyword argument warning on Ruby 2.7. [#456](https://github.com/ged/ruby-pg/pull/456)
|
167
|
+
- Change connection setup to respect connect_timeout parameter. [#459](https://github.com/ged/ruby-pg/pull/459)
|
168
|
+
- Fix indefinite hang in case of connection error on Windows [#458](https://github.com/ged/ruby-pg/pull/458)
|
169
|
+
- Set connection attribute of PG::Error in various places where it was missing. [#461](https://github.com/ged/ruby-pg/pull/461)
|
170
|
+
- Fix transaction leak on early break/return. [#463](https://github.com/ged/ruby-pg/pull/463)
|
171
|
+
- Update Windows fat binary gem to OpenSSL-1.1.1o and PostgreSQL-14.4.
|
172
|
+
|
173
|
+
Enhancements:
|
174
|
+
|
175
|
+
- Don't flush at each put_copy_data call, but flush at get_result. [#462](https://github.com/ged/ruby-pg/pull/462)
|
176
|
+
|
177
|
+
|
178
|
+
## v1.3.5 [2022-03-31] Lars Kanis <lars@greiz-reinsdorf.de>
|
179
|
+
|
180
|
+
Bugfixes:
|
181
|
+
|
182
|
+
- Handle PGRES_COMMAND_OK in pgresult_stream_any. [#447](https://github.com/ged/ruby-pg/pull/447)
|
183
|
+
Fixes usage when trying to stream the result of a procedure call that returns no results.
|
184
|
+
|
185
|
+
Enhancements:
|
186
|
+
|
187
|
+
- Rename BasicTypeRegistry#define_default_types to #register_default_types to use a more consistent terminology.
|
188
|
+
Keeping define_default_types for compatibility.
|
189
|
+
- BasicTypeRegistry: return self instead of objects by accident.
|
190
|
+
This allows call chaining.
|
191
|
+
- Add some April fun. [#449](https://github.com/ged/ruby-pg/pull/449)
|
192
|
+
|
193
|
+
Documentation:
|
194
|
+
- Refine documentation of conn.socket_io and conn.connect_poll
|
195
|
+
|
196
|
+
|
197
|
+
## v1.3.4 [2022-03-10] Lars Kanis <lars@greiz-reinsdorf.de>
|
198
|
+
|
199
|
+
Bugfixes:
|
200
|
+
|
201
|
+
- Don't leak IO in case of connection errors. [#439](https://github.com/ged/ruby-pg/pull/439)
|
202
|
+
Previously it was kept open until the PG::Connection was garbage collected.
|
203
|
+
- Fix a performance regession in conn.get_result noticed in single row mode. [#442](https://github.com/ged/ruby-pg/pull/442)
|
204
|
+
- Fix occasional error Errno::EBADF (Bad file descriptor) while connecting. [#444](https://github.com/ged/ruby-pg/pull/444)
|
205
|
+
- Fix compatibility of res.stream_each* methods with Fiber.scheduler. [#446](https://github.com/ged/ruby-pg/pull/446)
|
206
|
+
- Remove FL_TEST and FL_SET, which are MRI-internal. [#437](https://github.com/ged/ruby-pg/pull/437)
|
207
|
+
|
208
|
+
Enhancements:
|
209
|
+
|
210
|
+
- Allow pgresult_stream_any to be used by sequel_pg. [#443](https://github.com/ged/ruby-pg/pull/443)
|
211
|
+
|
212
|
+
|
213
|
+
## v1.3.3 [2022-02-22] Lars Kanis <lars@greiz-reinsdorf.de>
|
214
|
+
|
215
|
+
Bugfixes:
|
216
|
+
|
217
|
+
- Fix omission of the third digit of IPv4 addresses in connection URI. [#435](https://github.com/ged/ruby-pg/pull/435)
|
218
|
+
- Fix wrong permission of certs/larskanis-2022.pem in the pg-1.3.2.gem. [#432](https://github.com/ged/ruby-pg/pull/432)
|
219
|
+
|
220
|
+
|
221
|
+
## v1.3.2 [2022-02-14] Lars Kanis <lars@greiz-reinsdorf.de>
|
222
|
+
|
223
|
+
Bugfixes:
|
224
|
+
|
225
|
+
- Cancel only active query after failing transaction. [#430](https://github.com/ged/ruby-pg/pull/430)
|
226
|
+
This avoids an incompatibility with pgbouncer since pg-1.3.0.
|
227
|
+
- Fix String objects with non-applied encoding when using COPY or record decoders. [#427](https://github.com/ged/ruby-pg/pull/427)
|
228
|
+
- Update Windows fat binary gem to PostgreSQL-14.2.
|
229
|
+
|
230
|
+
Enhancements:
|
231
|
+
|
232
|
+
- Improve extconf.rb checks to reduces the number of compiler calls.
|
233
|
+
- Add a check for PGRES_PIPELINE_SYNC, to make sure the library version and the header files are PostgreSQL-14+. [#429](https://github.com/ged/ruby-pg/pull/429)
|
234
|
+
|
235
|
+
|
236
|
+
## v1.3.1 [2022-02-01] Michael Granger <ged@FaerieMUD.org>
|
237
|
+
|
238
|
+
Bugfixes:
|
239
|
+
|
240
|
+
- Fix wrong handling of socket writability on Windows introduced in [#417](https://github.com/ged/ruby-pg/pull/417).
|
241
|
+
This caused starvation in conn.put_copy_data.
|
242
|
+
- Fix error in PG.version_string(true). [#419](https://github.com/ged/ruby-pg/pull/419)
|
243
|
+
- Fix a regression in pg 1.3.0 where Ruby 2.x busy-looping any fractional seconds for every wait. [#420](https://github.com/ged/ruby-pg/pull/420)
|
244
|
+
|
245
|
+
Enhancements:
|
246
|
+
|
247
|
+
- Raise an error when conn.copy_data is used in nonblocking mode.
|
248
|
+
|
249
|
+
|
250
|
+
## v1.3.0 [2022-01-20] Michael Granger <ged@FaerieMUD.org>
|
251
|
+
|
252
|
+
Install Enhancements:
|
253
|
+
- Print some install help if libpq wasn't found. [#396](https://github.com/ged/ruby-pg/pull/396)
|
254
|
+
This should help to pick the necessary package without googling.
|
255
|
+
- Update Windows fat binary gem to OpenSSL-1.1.1m and PostgreSQL-14.1.
|
256
|
+
- Add binary Windows gems for Ruby 3.0 and 3.1.
|
257
|
+
- Make the library path of libpq available in ruby as PG::POSTGRESQL_LIB_PATH and add it to the search paths on Windows similar to +rpath+ on Unix systems. [#373](https://github.com/ged/ruby-pg/pull/373)
|
258
|
+
- Fall back to pkg-config if pg_config is not found. [#380](https://github.com/ged/ruby-pg/pull/380)
|
259
|
+
- Add option to extconf.rb to disable nogvl-wrapping of libpq functions.
|
260
|
+
All methods (except PG::Connection.ping) are nonblocking now, so that GVL unlock is in theory no longer necessary.
|
261
|
+
However it can have some advantage in concurrency, so that GVL unlock is still enabled by default.
|
262
|
+
Use:
|
263
|
+
- gem inst pg -- --disable-gvl-unlock
|
264
|
+
|
265
|
+
API Enhancements:
|
266
|
+
- Add full compatibility to Fiber.scheduler introduced in Ruby-3.0. [#397](https://github.com/ged/ruby-pg/pull/397)
|
267
|
+
- Add async_connect and async_send methods and add specific specs for Fiber.scheduler [#342](https://github.com/ged/ruby-pg/pull/342)
|
268
|
+
- Add async_get_result and async_get_last_result
|
269
|
+
- Add async_get_copy_data
|
270
|
+
- Implement async_put_copy_data/async_put_copy_end
|
271
|
+
- Implement async_reset method using the nonblocking libpq API
|
272
|
+
- Add async_set_client_encoding which is compatible to scheduler
|
273
|
+
- Add async_cancel as a nonblocking version of conn#cancel
|
274
|
+
- Add async_encrypt_password
|
275
|
+
- Run Connection.ping in a second thread.
|
276
|
+
- Make discard_results scheduler friendly
|
277
|
+
- Do all socket waiting through the conn.socket_io object.
|
278
|
+
- Avoid PG.connect blocking while address resolution by automatically providing the +hostaddr+ parameter and resolving in Ruby instead of libpq.
|
279
|
+
- On Windows Fiber.scheduler support requires Ruby-3.1+.
|
280
|
+
It is also only partly usable since may ruby IO methods are not yet scheduler aware on Windows.
|
281
|
+
- Add support for pipeline mode of PostgreSQL-14. [#401](https://github.com/ged/ruby-pg/pull/401)
|
282
|
+
- Allow specification of multiple hosts in PostgreSQL URI. [#387](https://github.com/ged/ruby-pg/pull/387)
|
283
|
+
- Add new method conn.backend_key - used to implement our own cancel method.
|
284
|
+
|
285
|
+
Type cast enhancements:
|
286
|
+
- Add PG::BasicTypeMapForQueries::BinaryData for encoding of bytea columns. [#348](https://github.com/ged/ruby-pg/pull/348)
|
287
|
+
- Reduce time to build coder maps and permit to reuse them for several type maps per PG::BasicTypeRegistry::CoderMapsBundle.new(conn) . [#376](https://github.com/ged/ruby-pg/pull/376)
|
288
|
+
- Make BasicTypeRegistry a class and use a global default instance of it.
|
289
|
+
Now a local type registry can be instanciated and given to the type map, to avoid changing shared global states.
|
290
|
+
- Allow PG::BasicTypeMapForQueries to take a Proc as callback for undefined types.
|
291
|
+
|
292
|
+
Other Enhancements:
|
293
|
+
- Convert all PG classes implemented in C to TypedData objects. [#349](https://github.com/ged/ruby-pg/pull/349)
|
294
|
+
- Support ObjectSpace.memsize_of(obj) on all classes implemented in C. [#393](https://github.com/ged/ruby-pg/pull/393)
|
295
|
+
- Make all PG objects implemented in C memory moveable and therefore GC.compact friendly. [#349](https://github.com/ged/ruby-pg/pull/349)
|
296
|
+
- Update errorcodes and error classes to PostgreSQL-14.0.
|
297
|
+
- Add PG::CONNECTION_* constants for conn.status of newer PostgreSQL versions.
|
298
|
+
- Add better support for logical replication. [#339](https://github.com/ged/ruby-pg/pull/339)
|
299
|
+
- Change conn.socket_io to read+write mode and to a BasicSocket object instead of IO.
|
300
|
+
- Use rb_io_wait() and the conn.socket_io object if available for better compatibility to Fiber.scheduler .
|
301
|
+
Fall back to rb_wait_for_single_fd() on ruby < 3.0.
|
302
|
+
- On Windows use a specialized wait function as a workaround for very poor performance of rb_io_wait(). [#416](https://github.com/ged/ruby-pg/pull/416)
|
303
|
+
|
304
|
+
Bugfixes:
|
305
|
+
- Release GVL while calling PQping which is a blocking method, but it didn't release GVL so far.
|
306
|
+
- Fix Connection#transaction to no longer block on interrupts, for instance when pressing Ctrl-C and cancel a running query. [#390](https://github.com/ged/ruby-pg/pull/390)
|
307
|
+
- Avoid casting of OIDs to fix compat with Redshift database. [#369](https://github.com/ged/ruby-pg/pull/369)
|
308
|
+
- Call conn.block before each conn.get_result call to avoid possible blocking in case of a slow network and multiple query results.
|
309
|
+
- Sporadic Errno::ENOTSOCK when using conn.socket_io on Windows [#398](https://github.com/ged/ruby-pg/pull/398)
|
310
|
+
|
311
|
+
Deprecated:
|
312
|
+
- Add deprecation warning to PG::BasicTypeRegistry.register_type and siblings.
|
313
|
+
|
314
|
+
Removed:
|
315
|
+
- Remove support of ruby-2.2, 2.3 and 2.4. Minimum is ruby-2.5 now.
|
316
|
+
- Remove support for PostgreSQL-9.2. Minimum is PostgreSQL-9.3 now.
|
317
|
+
- Remove constant PG::REVISION, which was broken since pg-1.1.4.
|
318
|
+
|
319
|
+
Repository:
|
320
|
+
- Replace Hoe by Bundler for gem packaging
|
321
|
+
- Add Github Actions CI and testing of source and binary gems.
|
322
|
+
|
323
|
+
|
324
|
+
## v1.2.3 [2020-03-18] Michael Granger <ged@FaerieMUD.org>
|
325
|
+
|
326
|
+
Bugfixes:
|
327
|
+
|
328
|
+
- Fix possible segfault at `PG::Coder#encode`, `decode` or their implicit calls through
|
329
|
+
a typemap after GC.compact. [#327](https://github.com/ged/ruby-pg/pull/327)
|
330
|
+
- Fix possible segfault in `PG::TypeMapByClass` after GC.compact. [#328](https://github.com/ged/ruby-pg/pull/328)
|
331
|
+
|
332
|
+
|
333
|
+
## v1.2.2 [2020-01-06] Michael Granger <ged@FaerieMUD.org>
|
334
|
+
|
335
|
+
Enhancements:
|
336
|
+
|
337
|
+
- Add a binary gem for Ruby 2.7.
|
338
|
+
|
339
|
+
|
340
|
+
## v1.2.1 [2020-01-02] Michael Granger <ged@FaerieMUD.org>
|
341
|
+
|
342
|
+
Enhancements:
|
343
|
+
|
344
|
+
- Added internal API for sequel_pg compatibility.
|
345
|
+
|
346
|
+
|
347
|
+
## v1.2.0 [2019-12-20] Michael Granger <ged@FaerieMUD.org>
|
348
|
+
|
349
|
+
Repository:
|
350
|
+
- Our primary repository has been moved to Github https://github.com/ged/ruby-pg .
|
351
|
+
Most of the issues from https://bitbucket.org/ged/ruby-pg have been migrated. [#43](https://github.com/ged/ruby-pg/pull/43)
|
352
|
+
|
353
|
+
API enhancements:
|
354
|
+
- Add PG::Result#field_name_type= and siblings to allow symbols to be used as field names. [#306](https://github.com/ged/ruby-pg/pull/306)
|
355
|
+
- Add new methods for error reporting:
|
356
|
+
- PG::Connection#set_error_context_visibility
|
357
|
+
- PG::Result#verbose_error_message
|
358
|
+
- PG::Result#result_verbose_error_message (alias)
|
359
|
+
- Update errorcodes and error classes to PostgreSQL-12.0.
|
360
|
+
- New constants: PG_DIAG_SEVERITY_NONLOCALIZED, PQERRORS_SQLSTATE, PQSHOW_CONTEXT_NEVER, PQSHOW_CONTEXT_ERRORS, PQSHOW_CONTEXT_ALWAYS
|
361
|
+
|
362
|
+
Type cast enhancements:
|
363
|
+
- Add PG::TextEncoder::Record and PG::TextDecoder::Record for en/decoding of Composite Types. [#258](https://github.com/ged/ruby-pg/pull/258), [#36](https://github.com/ged/ruby-pg/pull/36)
|
364
|
+
- Add PG::BasicTypeRegistry.register_coder to register instances instead of classes.
|
365
|
+
This is useful to register parametrized en/decoders like PG::TextDecoder::Record .
|
366
|
+
- Add PG::BasicTypeMapForQueries#encode_array_as= to switch between various interpretations of ruby arrays.
|
367
|
+
- Add Time, Array<Time>, Array<BigDecimal> and Array<IPAddr> encoders to PG::BasicTypeMapForQueries
|
368
|
+
- Exchange sprintf based float encoder by very fast own implementation with more natural format. [#301](https://github.com/ged/ruby-pg/pull/301)
|
369
|
+
- Define encode and decode methods only in en/decoders that implement it, so that they can be queried by respond_to? .
|
370
|
+
- Improve PG::TypeMapByColumn#inspect
|
371
|
+
- Accept Integer and Float as input to TextEncoder::Numeric . [#310](https://github.com/ged/ruby-pg/pull/310)
|
372
|
+
|
373
|
+
Other enhancements:
|
374
|
+
- Allocate the data part and the ruby object of PG::Result in one step, so that we don't need to check for valid data.
|
375
|
+
This removes PG::Result.allocate and PG::Result.new, which were callable but without any practical use. [#42](https://github.com/ged/ruby-pg/pull/42)
|
376
|
+
- Make use of PQresultMemorySize() of PostgreSQL-12 and fall back to our internal estimator.
|
377
|
+
- Improve performance of PG::Result#stream_each_tuple .
|
378
|
+
- Store client encoding in data part of PG::Connection and PG::Result objects, so that we no longer use ruby's internal encoding bits. [#280](https://github.com/ged/ruby-pg/pull/280)
|
379
|
+
- Update Windows fat binary gem to OpenSSL-1.1.1d and PostgreSQL-12.1.
|
380
|
+
- Add support for TruffleRuby. It is regularly tested as part of our CI.
|
381
|
+
- Enable +frozen_string_literal+ in all pg's ruby files
|
382
|
+
|
383
|
+
Bugfixes:
|
384
|
+
- Update the license in gemspec to "BSD-2-Clause".
|
385
|
+
It was incorrectly labeled "BSD-3-Clause". [#40](https://github.com/ged/ruby-pg/pull/40)
|
386
|
+
- Respect PG::Coder#flags in PG::Coder#to_h.
|
387
|
+
- Fix PG::Result memsize reporting after #clear.
|
388
|
+
- Release field names to GC on PG::Result#clear.
|
389
|
+
- Fix double free in PG::Result#stream_each_tuple when an exception is raised in the block.
|
390
|
+
- Fix PG::Result#stream_each_tuple to deliver typemapped values.
|
391
|
+
- Fix encoding of Array<unknown> with PG::BasicTypeMapForQueries
|
392
|
+
|
393
|
+
Deprecated:
|
394
|
+
- Add a deprecation warning to PG::Connection#socket .
|
395
|
+
|
396
|
+
Removed:
|
397
|
+
- Remove PG::Connection#guess_result_memsize= which was temporary added in pg-1.1.
|
398
|
+
- Remove PG::Result.allocate and PG::Result.new (see enhancements).
|
399
|
+
- Remove support of tainted objects. [#307](https://github.com/ged/ruby-pg/pull/307)
|
400
|
+
- Remove support of ruby-2.0 and 2.1. Minimum is ruby-2.2 now.
|
401
|
+
|
402
|
+
Documentation:
|
403
|
+
- Update description of connection params. See PG::Connection.new
|
404
|
+
- Link many method descriptions to corresponding libpq's documentation.
|
405
|
+
- Update sync_* and async_* query method descriptions and document the aliases.
|
406
|
+
The primary documentation is now at the async_* methods which are the default since pg-1.1.
|
407
|
+
- Fix documentation of many constants
|
408
|
+
|
409
|
+
|
410
|
+
## v1.1.4 [2019-01-08] Michael Granger <ged@FaerieMUD.org>
|
411
|
+
|
412
|
+
- Fix PG::BinaryDecoder::Timestamp on 32 bit systems. # 284
|
413
|
+
- Add new error-codes of PostgreSQL-11.
|
414
|
+
- Add ruby-2.6 support for Windows fat binary gems and remove ruby-2.0 and 2.1.
|
415
|
+
|
416
|
+
|
417
|
+
## v1.1.3 [2018-09-06] Michael Granger <ged@FaerieMUD.org>
|
418
|
+
|
419
|
+
- Revert opimization that was sometimes causing EBADF in rb_wait_for_single_fd().
|
420
|
+
|
421
|
+
|
422
|
+
## v1.1.2 [2018-08-28] Michael Granger <ged@FaerieMUD.org>
|
423
|
+
|
424
|
+
- Don't generate aliases for JOHAB encoding.
|
425
|
+
This avoids linking to deprecated/private function rb_enc(db)_alias().
|
426
|
+
|
427
|
+
|
428
|
+
## v1.1.1 [2018-08-27] Michael Granger <ged@FaerieMUD.org>
|
429
|
+
|
430
|
+
- Reduce deprecation warnings to only one message per deprecation.
|
431
|
+
|
432
|
+
|
433
|
+
## v1.1.0 [2018-08-24] Michael Granger <ged@FaerieMUD.org>
|
434
|
+
|
435
|
+
Deprecated (disable warnings per PG_SKIP_DEPRECATION_WARNING=1):
|
436
|
+
- Forwarding conn.exec to conn.exec_params is deprecated.
|
437
|
+
- Forwarding conn.exec_params to conn.exec is deprecated.
|
438
|
+
- Forwarding conn.async_exec to conn.async_exec_params.
|
439
|
+
- Forwarding conn.send_query to conn.send_query_params is deprecated.
|
440
|
+
- Forwarding conn.async_exec_params to conn.async_exec is deprecated.
|
441
|
+
|
442
|
+
PG::Connection enhancements:
|
443
|
+
- Provide PG::Connection#sync_* and PG::Connection#async_* query methods for explicit calling synchronous or asynchronous libpq API.
|
444
|
+
- Make PG::Connection#exec and siblings switchable between sync and async API per PG::Connection.async_api= and change the default to async flavors.
|
445
|
+
- Add async flavors of exec_params, prepare, exec_prepared, describe_prepared and describe_portal.
|
446
|
+
They are identical to their synchronous counterpart, but make use of PostgreSQL's async API.
|
447
|
+
- Replace `rb_thread_fd_select()` by faster `rb_wait_for_single_fd()` in `conn.block` and `conn.async_exec` .
|
448
|
+
- Add PG::Connection#discard_results .
|
449
|
+
- Raise an ArgumentError for strings containing zero bytes by #escape, #escape_literal, #escape_identifier, #quote_ident and PG::TextEncoder::Identifier. These methods previously truncated strings.
|
450
|
+
|
451
|
+
Result retrieval enhancements:
|
452
|
+
- Add PG::Result#tuple_values to retrieve all field values of a row as array.
|
453
|
+
- Add PG::Tuple, PG::Result#tuple and PG::Result#stream_each_tuple .
|
454
|
+
PG::Tuple offers a way to lazy cast result values.
|
455
|
+
- Estimate PG::Result size allocated by libpq and notify the garbage collector about it when running on Ruby-2.4 or newer.
|
456
|
+
- Make the estimated PG::Result size available to ObjectSpace.memsize_of(result) .
|
457
|
+
|
458
|
+
Type cast enhancements:
|
459
|
+
- Replace Ruby code by a faster C implementation of the SimpleDecoder's timestamp decode functions. github [#20](https://github.com/ged/ruby-pg/pull/20)
|
460
|
+
- Interpret years with up to 7 digists and BC dates by timestamp decoder.
|
461
|
+
- Add text timestamp decoders for UTC vs. local timezone variations.
|
462
|
+
- Add text timestamp encoders for UTC timezone.
|
463
|
+
- Add decoders for binary timestamps: PG::BinaryDecoder::Timestamp and variations.
|
464
|
+
- Add PG::Coder#flags accessor to allow modifications of de- respectively encoder behaviour.
|
465
|
+
- Add a flag to raise TypeError for invalid input values to PG::TextDecoder::Array .
|
466
|
+
- Add a text decoder for inet/cidr written in C.
|
467
|
+
- Add a numeric decoder written in C.
|
468
|
+
- Ensure input text is zero terminated for text format in PG::Coder#decode .
|
469
|
+
|
470
|
+
Source code enhancements:
|
471
|
+
- Fix headers and permission bits of various repository files.
|
472
|
+
|
473
|
+
Bugfixes:
|
474
|
+
- Properly decode array with prepended dimensions. [#272](https://github.com/ged/ruby-pg/pull/272)
|
475
|
+
For now dimension decorations are ignored, but a correct Array is returned.
|
476
|
+
- Array-Decoder: Avoid leaking memory when an Exception is raised while parsing. Fixes [#279](https://github.com/ged/ruby-pg/pull/279)
|
477
|
+
|
478
|
+
|
479
|
+
## v1.0.0 [2018-01-10] Michael Granger <ged@FaerieMUD.org>
|
480
|
+
|
481
|
+
Deprecated:
|
482
|
+
- Deprecate Ruby older than 2.2.
|
483
|
+
- Deprecate Connection#socket in favor of #socket_io.
|
484
|
+
|
485
|
+
Removed:
|
486
|
+
- Remove compatibility code for Ruby < 2.0 and PostgreSQL < 9.2.
|
487
|
+
- Remove partial compatibility with Rubinius.
|
488
|
+
- Remove top-level constants PGconn, PGresult, and PGError.
|
489
|
+
|
490
|
+
Enhancements:
|
491
|
+
- Update error codes to PostgreSQL-10
|
492
|
+
- Update Windows binary gems to Ruby-2.5, PostgreSQL 10.1 and
|
493
|
+
OpenSSL 1.1.0g.
|
494
|
+
|
495
|
+
Bugfixes:
|
496
|
+
- Fix URI detection for connection strings. [#265](https://github.com/ged/ruby-pg/pull/265) (thanks to jjoos)
|
497
|
+
- MINGW: Workaround segfault due to GCC linker error in conjunction with MSVC.
|
498
|
+
This happens when linking to PostgreSQL-10.0-x64 from EnterpriseDB.
|
499
|
+
|
500
|
+
Documentation fixes:
|
501
|
+
- Add PostgreSQL version since when the given function is supported. [#263](https://github.com/ged/ruby-pg/pull/263)
|
502
|
+
- Better documentation to `encoder` and `decoder` arguments of COPY related methods.
|
503
|
+
|
504
|
+
|
505
|
+
## v0.21.0 [2017-06-12] Michael Granger <ged@FaerieMUD.org>
|
506
|
+
|
507
|
+
Enhancements:
|
508
|
+
- Move add_dll_directory to the Runtime namespace for newest versions
|
509
|
+
of RubyInstaller.
|
510
|
+
- Deprecate PGconn, PGresult, and PGError top-level constants; a warning
|
511
|
+
will be output the first time one of them is used. They will be
|
512
|
+
removed in the upcoming 1.0 release.
|
513
|
+
|
514
|
+
Documentation fixes:
|
515
|
+
- Update the docs for PG::Result#cmd_tuples
|
516
|
+
|
517
|
+
New Samples:
|
518
|
+
- Add an example of the nicer #copy_data way of doing `COPY`.
|
519
|
+
|
520
|
+
|
521
|
+
## v0.20.0 [2017-03-10] Michael Granger <ged@FaerieMUD.org>
|
522
|
+
|
523
|
+
Enhancements:
|
524
|
+
- Update error codes to PostgreSQL-9.6
|
525
|
+
- Update Windows binary gems to Ruby-2.4, PostgreSQL 9.6.1 and
|
526
|
+
OpenSSL 1.0.2j.
|
527
|
+
- Add support for RubyInstaller2 to Windows binary gems.
|
528
|
+
|
529
|
+
Bugfixes:
|
530
|
+
- Use secure JSON methods for JSON (de)serialisation. [#248](https://github.com/ged/ruby-pg/pull/248)
|
531
|
+
- Fix Result#inspect on a cleared result.
|
532
|
+
- Fix test case that failed on Ruby-2.4. [#255](https://github.com/ged/ruby-pg/pull/255)
|
533
|
+
|
534
|
+
Documentation fixes:
|
535
|
+
- Talk about Integer instead of Fixnum.
|
536
|
+
- Fix method signature of Coder#encode.
|
537
|
+
|
538
|
+
|
539
|
+
## v0.19.0 [2016-09-21] Michael Granger <ged@FaerieMUD.org>
|
540
|
+
|
541
|
+
- Deprecate Ruby 1.9
|
542
|
+
|
543
|
+
Enhancements:
|
544
|
+
- Respect and convert character encoding of all strings sent
|
545
|
+
to the server. [#231](https://github.com/ged/ruby-pg/pull/231)
|
546
|
+
- Add PostgreSQL-9.5 functions PQsslInUse(), PQsslAttribute()
|
547
|
+
and PQsslAttributeNames().
|
548
|
+
- Various documentation fixes and improvements.
|
549
|
+
- Add mechanism to build without pg_config:
|
550
|
+
gem install pg -- --with-pg-config=ignore
|
551
|
+
- Update Windows binary gems to Ruby-2.3, PostgreSQL 9.5.4 and
|
552
|
+
OpenSSL 1.0.2f.
|
553
|
+
- Add JSON coders and add them to BasicTypeMapForResults and
|
554
|
+
BasicTypeMapBasedOnResult
|
555
|
+
- Allow build from git per bundler.
|
556
|
+
|
557
|
+
Bugfixes:
|
558
|
+
- Release GVL while calling PQsetClientEncoding(). [#245](https://github.com/ged/ruby-pg/pull/245)
|
559
|
+
- Add __EXTENSIONS__ to Solaris/SmartOS for Ruby >= 2.3.x. [#236](https://github.com/ged/ruby-pg/pull/236)
|
560
|
+
- Fix wrong exception when running SQL while in Connection#copy_data
|
561
|
+
block for output
|
562
|
+
|
563
|
+
|
564
|
+
## v0.18.4 [2015-11-13] Michael Granger <ged@FaerieMUD.org>
|
565
|
+
|
566
|
+
Enhancements:
|
567
|
+
- Fixing compilation problems with Microsoft Visual Studio 2008. GH [#10](https://github.com/ged/ruby-pg/pull/10)
|
568
|
+
- Avoid name clash with xcode and jemalloc. PR[#22](https://github.com/ged/ruby-pg/pull/22), PR[#23](https://github.com/ged/ruby-pg/pull/23)
|
569
|
+
|
570
|
+
Bugfixes:
|
571
|
+
- Avoid segfault, when quote_ident or TextEncoder::Identifier
|
572
|
+
is called with Array containing non-strings. [#226](https://github.com/ged/ruby-pg/pull/226)
|
573
|
+
|
574
|
+
|
575
|
+
## v0.18.3 [2015-09-03] Michael Granger <ged@FaerieMUD.org>
|
576
|
+
|
577
|
+
Enhancements:
|
578
|
+
- Use rake-compiler-dock to build windows gems easily.
|
579
|
+
- Add CI-tests on appveyor and fix test cases accordingly.
|
580
|
+
|
581
|
+
Bugfixes:
|
582
|
+
- Fix data type resulting in wrong base64 encoding.
|
583
|
+
- Change instance_of checks to kind_of for subclassing. [#220](https://github.com/ged/ruby-pg/pull/220)
|
584
|
+
- TextDecoder::Date returns an actual Ruby Date instead of a Time
|
585
|
+
(thanks to Thomas Ramfjord)
|
586
|
+
|
587
|
+
|
588
|
+
## v0.18.2 [2015-05-14] Michael Granger <ged@FaerieMUD.org>
|
589
|
+
|
590
|
+
Enhancements:
|
591
|
+
|
592
|
+
- Allow URI connection string (thanks to Chris Bandy)
|
593
|
+
- Allow Array type parameter to conn.quote_ident
|
594
|
+
|
595
|
+
Bugfixes:
|
596
|
+
|
597
|
+
- Speedups and fixes for PG::TextDecoder::Identifier and quoting behavior
|
598
|
+
- Revert addition of PG::Connection#hostaddr [[#202](https://github.com/ged/ruby-pg/pull/202)].
|
599
|
+
- Fix decoding of fractional timezones and timestamps [[#203](https://github.com/ged/ruby-pg/pull/203)]
|
600
|
+
- Fixes for non-C99 compilers
|
601
|
+
- Avoid possible symbol name clash when linking against static libpq.
|
602
|
+
|
603
|
+
|
604
|
+
## v0.18.1 [2015-01-05] Michael Granger <ged@FaerieMUD.org>
|
605
|
+
|
606
|
+
Correct the minimum compatible Ruby version to 1.9.3. [#199](https://github.com/ged/ruby-pg/pull/199)
|
607
|
+
|
608
|
+
|
609
|
+
## v0.18.0 [2015-01-01] Michael Granger <ged@FaerieMUD.org>
|
610
|
+
|
611
|
+
Bugfixes:
|
612
|
+
- Fix OID to Integer mapping (it is unsigned now). [#187](https://github.com/ged/ruby-pg/pull/187)
|
613
|
+
- Fix possible segfault in conjunction with notice receiver. [#185](https://github.com/ged/ruby-pg/pull/185)
|
614
|
+
|
615
|
+
Enhancements:
|
616
|
+
|
617
|
+
- Add an extensible type cast system.
|
618
|
+
- A lot of performance improvements.
|
619
|
+
- Return frozen String objects for result field names.
|
620
|
+
- Add PG::Result#stream_each and #stream_each_row as fast helpers for
|
621
|
+
the single row mode.
|
622
|
+
- Add Enumerator variant to PG::Result#each and #each_row.
|
623
|
+
- Add PG::Connection#conninfo and #hostaddr.
|
624
|
+
- Add PG.init_openssl and PG.init_ssl methods.
|
625
|
+
- Add PG::Result.inspect
|
626
|
+
- Force zero termination for all text strings that are given to libpq.
|
627
|
+
It raises an ArgumentError if the string contains a null byte.
|
628
|
+
- Update Windows cross build to PostgreSQL 9.3.
|
629
|
+
|
630
|
+
|
631
|
+
|
632
|
+
## v0.17.1 [2013-12-18] Michael Granger <ged@FaerieMUD.org>
|
633
|
+
|
634
|
+
Bugfixes:
|
635
|
+
|
636
|
+
- Fix compatibility with signal handlers defined in Ruby. This reverts
|
637
|
+
cancellation of queries running on top of the blocking libpq API (like
|
638
|
+
Connection#exec) in case of signals. As an alternative the #async_exec
|
639
|
+
can be used, which is reverted to use the non-blocking API, again.
|
640
|
+
- Wrap PQcancel to be called without GVL. It internally waits for
|
641
|
+
the canceling connection.
|
642
|
+
|
643
|
+
Documentation fixes:
|
644
|
+
|
645
|
+
- Fix documentation for PG::Connection::conndefaults.
|
646
|
+
|
647
|
+
|
648
|
+
## v0.17.0 [2013-09-15] Michael Granger <ged@FaerieMUD.org>
|
649
|
+
|
650
|
+
Bugfixes:
|
651
|
+
|
652
|
+
- Fix crash by calling PQsend* and PQisBusy without GVL ([#171](https://github.com/ged/ruby-pg/pull/171)).
|
653
|
+
|
654
|
+
Enhancements:
|
655
|
+
|
656
|
+
- Add method PG::Connection#copy_data.
|
657
|
+
- Add a Gemfile to allow installation of dependencies with bundler.
|
658
|
+
- Add compatibility with rake-compiler-dev-box.
|
659
|
+
- Return self from PG::Result#check instead of nil. This allows
|
660
|
+
to stack method calls.
|
661
|
+
|
662
|
+
|
663
|
+
## v0.16.0 [2013-07-22] Michael Granger <ged@FaerieMUD.org>
|
664
|
+
|
665
|
+
Bugfixes:
|
666
|
+
|
667
|
+
- Avoid warnings about uninitialized instance variables.
|
668
|
+
- Use a more standard method of adding library and include directories.
|
669
|
+
This fixes build on AIX (Github [#7](https://github.com/ged/ruby-pg/pull/7)) and Solaris ([#164](https://github.com/ged/ruby-pg/pull/164)).
|
670
|
+
- Cancel the running query, if a thread is about to be killed (e.g. by CTRL-C).
|
671
|
+
- Fix GVL issue with wait_for_notify/notifies and notice callbacks.
|
672
|
+
- Set proper encoding on the string returned by quote_ident, escape_literal
|
673
|
+
and escape_identifier ([#163](https://github.com/ged/ruby-pg/pull/163)).
|
674
|
+
- Use nil as PG::Error#result in case of a NULL-result from libpq ([#166](https://github.com/ged/ruby-pg/pull/166)).
|
675
|
+
- Recalculate the timeout of conn#wait_for_notify and conn#block in case
|
676
|
+
of socket events that require re-runs of select().
|
677
|
+
|
678
|
+
Documentation fixes:
|
679
|
+
|
680
|
+
- Fix non working example for PGresult#error_field.
|
681
|
+
|
682
|
+
Enhancements:
|
683
|
+
|
684
|
+
- Add unique exception classes for each PostgreSQL error type ([#5](https://github.com/ged/ruby-pg/pull/5)).
|
685
|
+
- Return result of the block in conn#transaction instead of nil ([#158](https://github.com/ged/ruby-pg/pull/158)).
|
686
|
+
- Allow 'rake compile' and 'rake gem' on non mercurial repos.
|
687
|
+
- Add support for PG_DIAG_*_NAME error fields of PostgreSQL-9.3 ([#161](https://github.com/ged/ruby-pg/pull/161)).
|
688
|
+
|
689
|
+
|
690
|
+
## v0.15.1 [2013-04-08] Michael Granger <ged@FaerieMUD.org>
|
691
|
+
|
692
|
+
Bugfixes:
|
693
|
+
|
694
|
+
- Shorten application_name to avoid warnings about truncated identifier.
|
695
|
+
|
696
|
+
|
697
|
+
## v0.15.0 [2013-03-03] Michael Granger <ged@FaerieMUD.org>
|
698
|
+
|
699
|
+
Bugfixes:
|
700
|
+
|
701
|
+
- Fix segfault in PG::Result#field_values when called with non String value.
|
702
|
+
- Fix encoding of messages delivered by notice callbacks.
|
703
|
+
- Fix text encoding for Connection#wait_for_notify and Connection#notifies.
|
704
|
+
- Fix 'Bad file descriptor' problems under Windows: wrong behaviour of
|
705
|
+
#wait_for_notify() and timeout handling of #block on Ruby 1.9.
|
706
|
+
|
707
|
+
Documentation fixes:
|
708
|
+
|
709
|
+
- conn#socket() can not be used with IO.for_fd() on Windows.
|
710
|
+
|
711
|
+
Enhancements:
|
712
|
+
|
713
|
+
- Tested under Ruby 2.0.0p0.
|
714
|
+
- Add single row mode of PostgreSQL 9.2.
|
715
|
+
- Set fallback_application_name to program name $0. Thanks to Will Leinweber
|
716
|
+
for the patch.
|
717
|
+
- Release Ruby's GVL while calls to blocking libpq functions to allow better
|
718
|
+
concurrency in threaded applications.
|
719
|
+
- Refactor different variants of waiting for the connection socket.
|
720
|
+
- Make use of rb_thread_fd_select() on Ruby 1.9 and avoid deprecated
|
721
|
+
rb_thread_select().
|
722
|
+
- Add an example of how to insert array data using a prepared statement ([#145](https://github.com/ged/ruby-pg/pull/145)).
|
723
|
+
- Add continuous integration tests on travis-ci.org.
|
724
|
+
- Add PG::Result#each_row for iterative over result sets by row. Thanks to
|
725
|
+
Aaron Patterson for the patch.
|
726
|
+
- Add a PG::Connection#socket_io method for fetching a (non-autoclosing) IO
|
727
|
+
object for the connection's socket.
|
728
|
+
|
729
|
+
Specs:
|
730
|
+
|
731
|
+
- Fix various specs to run on older PostgreSQL and Ruby versions.
|
732
|
+
- Avoid fork() in specs to allow usage on Windows and JRuby.
|
733
|
+
|
734
|
+
|
735
|
+
## v0.14.1 [2012-09-02] Michael Granger <ged@FaerieMUD.org>
|
736
|
+
|
737
|
+
Important bugfix:
|
738
|
+
|
739
|
+
- Fix stack overflow bug in PG::Result#values and #column_values ([#135](https://github.com/ged/ruby-pg/pull/135)). Thanks
|
740
|
+
to everyone who reported the bug, and Lars Kanis especially for figuring out
|
741
|
+
the problem.
|
742
|
+
|
743
|
+
PostgreSQL 9.2 beta fixes:
|
744
|
+
|
745
|
+
- Recognize PGRES_SINGLE_TUPLE as OK when checking PGresult (Jeremy Evans)
|
746
|
+
|
747
|
+
Documentation fixes:
|
748
|
+
|
749
|
+
- Add note about the usage scope of the result object received by the
|
750
|
+
#set_notice_receiver block. (Lars Kanis)
|
751
|
+
- Add PGRES_COPY_BOTH to documentation of PG::Result#result_status. (Lars Kanis)
|
752
|
+
- Add some documentation to PG::Result#fnumber (fix for [#139](https://github.com/ged/ruby-pg/pull/139))
|
753
|
+
|
754
|
+
|
755
|
+
## v0.14.0 [2012-06-17] Michael Granger <ged@FaerieMUD.org>
|
756
|
+
|
757
|
+
Bugfixes:
|
758
|
+
[#47](https://github.com/ged/ruby-pg/pull/47), [#104](https://github.com/ged/ruby-pg/pull/104)
|
759
|
+
|
760
|
+
|
761
|
+
New Methods for PostgreSQL 9 and async API support:
|
762
|
+
PG
|
763
|
+
- ::library_version
|
764
|
+
|
765
|
+
PG::Connection
|
766
|
+
- ::ping
|
767
|
+
- #escape_literal
|
768
|
+
- #escape_identifier
|
769
|
+
- #set_default_encoding
|
770
|
+
|
771
|
+
PG::Result
|
772
|
+
- #check
|
773
|
+
|
774
|
+
|
775
|
+
New Samples:
|
776
|
+
|
777
|
+
This release also comes with a collection of contributed sample scripts for
|
778
|
+
doing resource-utilization reports, graphing database statistics,
|
779
|
+
monitoring for replication lag, shipping WAL files for replication,
|
780
|
+
automated tablespace partitioning, etc. See the samples/ directory.
|
781
|
+
|
782
|
+
|
783
|
+
## v0.13.2 [2012-02-22] Michael Granger <ged@FaerieMUD.org>
|
784
|
+
|
785
|
+
- Make builds against PostgreSQL earlier than 8.3 fail with a descriptive
|
786
|
+
message instead of a compile failure.
|
787
|
+
|
788
|
+
|
789
|
+
## v0.13.1 [2012-02-12] Michael Granger <ged@FaerieMUD.org>
|
790
|
+
|
791
|
+
- Made use of a finished PG::Connection raise a PG::Error instead of
|
792
|
+
a fatal error ([#110](https://github.com/ged/ruby-pg/pull/110)).
|
793
|
+
- Added missing BSDL license file ([#108](https://github.com/ged/ruby-pg/pull/108))
|
794
|
+
|
795
|
+
|
796
|
+
## v0.13.0 [2012-02-09] Michael Granger <ged@FaerieMUD.org>
|
797
|
+
|
798
|
+
Reorganization of modules/classes to be better Ruby citizens (with backward-compatible aliases):
|
799
|
+
- Created toplevel namespace 'PG' to correspond with the gem name.
|
800
|
+
- Renamed PGconn to PG::Connection (with ::PGconn alias)
|
801
|
+
- Renamed PGresult to PG::Result (with ::PGresult alias)
|
802
|
+
- Renamed PGError to PG::Error (with ::PGError alias)
|
803
|
+
- Declare all constants inside PG::Constants, then include them in
|
804
|
+
PG::Connection and PG::Result for backward-compatibility, and
|
805
|
+
in PG for convenience.
|
806
|
+
- Split the extension source up by class/module.
|
807
|
+
- Removed old compatibility code for PostgreSQL versions < 8.3
|
808
|
+
|
809
|
+
Documentation:
|
810
|
+
- Clarified licensing, updated to Ruby 1.9's license.
|
811
|
+
- Merged authors list, added some missing people to the Contributor's
|
812
|
+
list.
|
813
|
+
- Cleaned up the sample/ directory
|
814
|
+
- Making contact info a bit clearer, link to the Google+ page and
|
815
|
+
the mailing list
|
816
|
+
|
817
|
+
Enhancements:
|
818
|
+
- Added a convenience method: PG.connect -> PG::Connection.new
|
819
|
+
|
820
|
+
Bugfixes:
|
821
|
+
- Fixed LATIN5-LATIN10 Postgres<->Ruby encoding conversions
|
822
|
+
|
823
|
+
|
824
|
+
|
825
|
+
## v0.12.2 [2012-01-03] Michael Granger <ged@FaerieMUD.org>
|
826
|
+
|
827
|
+
- Fix for the 1.8.7 breakage introduced by the st.h fix for alternative Ruby
|
828
|
+
implementations ([#97](https://github.com/ged/ruby-pg/pull/97) and [#98](https://github.com/ged/ruby-pg/pull/98)). Thanks to Lars Kanis for the patch.
|
829
|
+
- Encode error messages with the connection's encoding under 1.9 ([#96](https://github.com/ged/ruby-pg/pull/96))
|
830
|
+
|
831
|
+
|
832
|
+
## v0.12.1 [2011-12-14] Michael Granger <ged@FaerieMUD.org>
|
833
|
+
|
834
|
+
- Made rake-compiler a dev dependency, as Rubygems doesn't use the Rakefile
|
835
|
+
for compiling the extension. Thanks to eolamey@bitbucket and Jeremy Evans
|
836
|
+
for pointing this out.
|
837
|
+
- Added an explicit include for ruby/st.h for implementations that need it
|
838
|
+
(fixes [#95](https://github.com/ged/ruby-pg/pull/95)).
|
839
|
+
|
840
|
+
|
841
|
+
## v0.12.0 [2011-12-07] Michael Granger <ged@FaerieMUD.org>
|
842
|
+
|
843
|
+
- PGconn#wait_for_notify
|
844
|
+
* send nil as the payload argument if the NOTIFY didn't have one.
|
845
|
+
* accept a nil argument for no timeout (Sequel support)
|
846
|
+
* Fixed API docs
|
847
|
+
* Taint and encode event name and payload
|
848
|
+
- Handle errors while rb_thread_select()ing in PGconn#block.
|
849
|
+
(Brian Weaver).
|
850
|
+
- Fixes for Win32 async queries (Rafał Bigaj)
|
851
|
+
- Memory leak fixed: Closing opened WSA event. (rafal)
|
852
|
+
- Fixes for [#66](https://github.com/ged/ruby-pg/pull/66) Win32 asynchronous queries hang on connection
|
853
|
+
error. (rafal)
|
854
|
+
- Fixed a typo in PGconn#error_message's documentation
|
855
|
+
- fixing unused variable warnings for ruby 1.9.3 (Aaron Patterson)
|
856
|
+
- Build system bugfixes
|
857
|
+
- Converted to Hoe
|
858
|
+
- Updates for the Win32 binary gem builds (Lars Kanis)
|
859
|
+
|
860
|
+
|
861
|
+
## v0.11.0 [2011-02-09] Michael Granger <ged@FaerieMUD.org>
|
862
|
+
|
863
|
+
Enhancements:
|
864
|
+
|
865
|
+
* Added a PGresult#values method to fetch all result rows as an Array of
|
866
|
+
Arrays. Thanks to Jason Yanowitz (JYanowitz at enovafinancial dot com) for
|
867
|
+
the patch.
|
868
|
+
|
869
|
+
|
870
|
+
## v0.10.1 [2011-01-19] Michael Granger <ged@FaerieMUD.org>
|
871
|
+
|
872
|
+
Bugfixes:
|
873
|
+
|
874
|
+
* Add an include guard for pg.h
|
875
|
+
* Simplify the common case require of the ext
|
876
|
+
* Include the extconf header
|
877
|
+
* Fix compatibility with versions of PostgreSQL without PQgetCancel. (fixes [#36](https://github.com/ged/ruby-pg/pull/36))
|
878
|
+
* Fix require for natively-compiled extension under Windows. (fixes [#55](https://github.com/ged/ruby-pg/pull/55))
|
879
|
+
* Change rb_yield_splat() to rb_yield_values() for compatibility with Rubinius. (fixes [#54](https://github.com/ged/ruby-pg/pull/54))
|
880
|
+
|
881
|
+
|
882
|
+
## v0.10.0 [2010-12-01] Michael Granger <ged@FaerieMUD.org>
|
883
|
+
|
884
|
+
Enhancements:
|
885
|
+
|
886
|
+
* Added support for the payload of NOTIFY events (w/Mahlon E. Smith)
|
887
|
+
* Updated the build system with Rubygems suggestions from RubyConf 2010
|
888
|
+
|
889
|
+
Bugfixes:
|
890
|
+
|
891
|
+
* Fixed issue with PGconn#wait_for_notify that caused it to miss notifications that happened after
|
892
|
+
the LISTEN but before the wait_for_notify.
|
893
|
+
|
894
|
+
## v0.9.0 [2010-02-28] Michael Granger <ged@FaerieMUD.org>
|
895
|
+
|
896
|
+
Bugfixes.
|
897
|
+
|
898
|
+
## v0.8.0 [2009-03-28] Jeff Davis <davis.jeffrey@gmail.com>
|
899
|
+
|
900
|
+
Bugfixes, better Windows support.
|
901
|
+
|