@@ -4,8 +4,7 @@ In next release ...
4
4
connected when the promise returns. The ` Client ` symbol is now a
5
5
type instead of a value.
6
6
7
- 1.9.0 (2024-01-23)
8
- ------------------
7
+ ## v1.9.0 (2024-01-23)
9
8
10
9
- Add support for ESM modules.
11
10
@@ -15,8 +14,7 @@ In next release ...
15
14
16
15
- Fix issue handling connection error during secure startup.
17
16
18
- 1.8.0 (2023-12-14)
19
- ------------------
17
+ ## v1.8.0 (2023-12-14)
20
18
21
19
- Reduce buffer allocation and intelligently scale initial allocation when creating
22
20
a new buffer.
@@ -34,8 +32,7 @@ In next release ...
34
32
35
33
- Fixed a regression where some symbols were not correctly exposed for importing.
36
34
37
- 1.7.0 (2023-12-13)
38
- ------------------
35
+ ## v1.7.0 (2023-12-13)
39
36
40
37
- The ` execute ` method has been removed.
41
38
@@ -50,8 +47,7 @@ In next release ...
50
47
51
48
The same change has been made to ` prepare ` .
52
49
53
- 1.6.0 (2023-12-13)
54
- ------------------
50
+ ## v1.6.0 (2023-12-13)
55
51
56
52
- The iterator methods now return reified representations of the query result
57
53
(i.e. objects), carrying the generic type parameter specified for the query
@@ -61,8 +57,7 @@ In next release ...
61
57
This separates the query results interface into an iterator interface (providing
62
58
objects) and a result interface (providing rows and column names).
63
59
64
- 1.5.0 (2023-12-06)
65
- ------------------
60
+ ## v1.5.0 (2023-12-06)
66
61
67
62
- The ` Value ` type has been replaced with ` any ` , motivated by the new
68
63
generic result type as well as the possibility to implement custom
@@ -93,8 +88,7 @@ In next release ...
93
88
94
89
- Use ` bigint ` everywhere as a type instead of ` BigInt ` .
95
90
96
- 1.4.0 (2023-11-10)
97
- ------------------
91
+ ## v1.4.0 (2023-11-10)
98
92
99
93
- A statement error during the processing of a prepared statement is
100
94
now handled correctly (#73 ).
@@ -104,21 +98,15 @@ In next release ...
104
98
- The [ ts-typed-events] ( https://www.npmjs.com/package/ts-typed-events )
105
99
dependency was updated to version 3.0.0.
106
100
107
-
108
- 1.3.1 (2023-06-19)
109
- ------------------
101
+ ## v1.3.1 (2023-06-19)
110
102
111
103
- Added details of database error to thrown error message (#64 ).
112
104
113
-
114
- 1.3.0 (2022-08-22)
115
- ------------------
105
+ ## v1.3.0 (2022-08-22)
116
106
117
107
- Fix prepare statement with no return data (#56 ).
118
108
119
-
120
- 1.2.1 (2021-12-23)
121
- ------------------
109
+ ## v1.2.1 (2021-12-23)
122
110
123
111
- Fix range error that could occur when parsing an incomplete data row
124
112
after one or more previous messages had already been processed.
@@ -136,8 +124,7 @@ In next release ...
136
124
- Fix issue where a query with multiple columns would yield incomplete
137
125
rows when protocol data spans multiple receive buffers.
138
126
139
- 1.2.0 (2021-11-19)
140
- ------------------
127
+ ## v1.2.0 (2021-11-19)
141
128
142
129
- The "execute" method is now public and must be used now when passing
143
130
a query object rather than individual arguments when querying.
@@ -162,19 +149,15 @@ In next release ...
162
149
163
150
- Updated dependency on "ts-typed-events".
164
151
165
- 1.1.3 (2020-02-23)
166
- ------------------
152
+ ## v1.1.3 (2020-02-23)
167
153
168
154
- Added support for ` BigInt ` .
169
155
170
- 1.1.2 (2019-12-28)
171
- ------------------
156
+ ## v1.1.2 (2019-12-28)
172
157
173
158
- Fixed handling of null values in arrays. [ matthieusieben]
174
159
175
-
176
- 1.1.1 (2019-12-06)
177
- ------------------
160
+ ## v1.1.1 (2019-12-06)
178
161
179
162
- Fixed ` ECONNRESET ` deprecation.
180
163
@@ -184,9 +167,7 @@ In next release ...
184
167
185
168
- Encoding argument now uses ` BufferEncoding ` type.
186
169
187
-
188
- 1.1.0 (2019-06-24)
189
- ------------------
170
+ ## v1.1.0 (2019-06-24)
190
171
191
172
- The rejection value is now a ` DatabaseError ` object which inherits
192
173
from ` Error ` . Previously, this value was a plain string.
@@ -199,9 +180,7 @@ In next release ...
199
180
200
181
- Handle ` JSONB ` and null values.
201
182
202
-
203
- 1.0.2 (2019-02-08)
204
- ------------------
183
+ ## v1.0.2 (2019-02-08)
205
184
206
185
- Connection state variable 'closed' is now public. This should be
207
186
checked before using the connection to make sure that an unexpected
@@ -210,9 +189,7 @@ In next release ...
210
189
- Handle protocol errors gracefully, passing error to open data
211
190
handlers and marking the connection as 'closed'.
212
191
213
-
214
- 1.0.1 (2019-01-13)
215
- ------------------
192
+ ## v1.0.1 (2019-01-13)
216
193
217
194
- Parse JSON data only on non-null value.
218
195
@@ -221,8 +198,6 @@ In next release ...
221
198
- Fixed an issue with ` Result.one() ` and ` Result.first() ` methods
222
199
where a rejection would be uncaught.
223
200
224
-
225
- 1.0.0 (2019-01-08)
226
- ------------------
201
+ ## v1.0.0 (2019-01-08)
227
202
228
203
- Initial release.
0 commit comments