pg 1.3.4 → 1.5.3

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