cipherstash-pg 1.0.0.beta.1-x86_64-darwin-21

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