Skip to content

Commit 9867ff0

Browse files
committed
Update changelog v3.2.0
1 parent 88b5d6f commit 9867ff0

File tree

1 file changed

+30
-11
lines changed

1 file changed

+30
-11
lines changed

CHANGELOG.md

Lines changed: 30 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Changelog
22

3-
## [3.1.0] - 22 Apr 2022
3+
## v3.2.0 - 15 May 2022
4+
- Add `sslmode=verify-full` support e67da29
5+
- Add support for array of fragments 342bf55
6+
- Add uri decode of host in url - fixes #346 1adc113
7+
- Add passing of rest url params to connection (ootb support cockroach urls) 41ed84f
8+
- Fix Deno partial writes 452a30d
9+
- Fix `as` dynamic helper 3300c40
10+
- Fix some nested fragments usage 9bfa902
11+
- Fix missing columns on `Result` when using simple protocol - fixes #350 1e2e298
12+
- Fix fragments in transactions - fixes #333 75914c7
13+
14+
#### Typescript related
15+
- Upgrade/fix types (#357) 1e6d312
16+
- Add optional `onlisten` callback to `listen()` on TypeScript (#360) 6b749b2
17+
- Add implicit custom type inference (#361) 28512bf
18+
- Fix and improve sql() helper types (#338) c1de3d8
19+
- Fix update query type def for `.writable()` and `.readable()` to return promises (#347) 51269ce
20+
- Add bigint to typescript Serializable - fixes #330 f1e41c3
21+
22+
## v3.1.0 - 22 Apr 2022
423
- Add close method to close but not end connections forever 94fea8f
524
- Add .values() method to return rows as arrays of values 56873c2
625
- Support transform.undefined - fixes #314 eab71e5
@@ -9,7 +28,7 @@
928
- Fix subscribe reconnect and add onsubscribe method - fixes #315 5097345
1029
- Deno ts fix - fixes #327 50403a1
1130

12-
## [3.0.6] - 19 Apr 2022
31+
## v3.0.6 - 19 Apr 2022
1332
- Properly close connections in Deno cbc6a75
1433
- Only write end message if socket is open 13950af
1534
- Improve query cancellation 01c2c68
@@ -18,27 +37,27 @@
1837
- Fix type errors in TypeScript deno projects (#313) 822fb21
1938
- Execute forEach instantly 44e9fbe
2039

21-
## [3.0.5] - 6 Apr 2022
40+
## v3.0.5 - 6 Apr 2022
2241
- Fix transaction execution timing 28bb0b3
2342
- Add optional onlisten function to listen 1dc2fd2
2443
- Fix dynamic in helper after insert #305 4d63a59
2544

26-
## [3.0.4] - 5 Apr 2022
45+
## v3.0.4 - 5 Apr 2022
2746
- Ensure drain only dequeues if ready - fixes #303 2e5f017
2847

29-
## [3.0.3] - 4 Apr 2022
48+
## v3.0.3 - 4 Apr 2022
3049
- Run tests with github actions b536d0d
3150
- Add custom socket option - fixes #284 5413f0c
3251
- Fix sql function overload type inference (#294) 3c4e90a
3352
- Update deno std to 0.132 and enable last tests 50762d4
3453
- Send proper client-encoding - Fixes #288 e5b8554
3554

36-
## [3.0.2] - 31 Mar 2022
55+
## v3.0.2 - 31 Mar 2022
3756
- Fix BigInt handling 36a70df
3857
- Fix unsubscribing (#300) b6c597f
3958
- Parse update properly with identity full - Fixes #296 3ed11e7
4059

41-
## [3.0.1] - 30 Mar 2022
60+
## v3.0.1 - 30 Mar 2022
4261
- Improve connection queue handling + fix leak cee1a57
4362
- Use publications option - fixes #295 b5ceecc
4463
- Throw proper query error if destroyed e148a0a
@@ -48,7 +67,7 @@
4867
- Disable fetch_types for Subscribe options 72e0cdb
4968
- Update TypeScript types with v3 changes (#293) db05836
5069

51-
## [3.0.0] - 24 Mar 2022
70+
## v3.0.0 - 24 Mar 2022
5271
This is a complete rewrite to better support all the features that I was trying to get into v2. There are a few breaking changes from v2 beta, which some (myself included) was using in production, so I'm skipping a stable v2 release and going straight to v3.
5372

5473
Here are some of the new things available, but check the updated docs.
@@ -82,15 +101,15 @@ Here are some of the new things available, but check the updated docs.
82101
- Default to 10 connections instead of number of CPUs
83102
- Numbers that cannot be safely cast to JS Number are returned as string. This happens for eg, `select count(*)` because `count()` returns a 64 bit integer (int8), so if you know your `count()` won't be too big for a js number just cast in your query to int4 like `select count(*)::int`
84103

85-
## [1.0.2] - 21 Jan 2020
104+
## v1.0.2 - 21 Jan 2020
86105

87106
- Fix standard postgres user env var (#20) cce5ad7
88107
- Ensure url or options is not falsy bc549b0
89108
- Add support for dynamic password b2ab9fb
90109
- Fix hiding pass from options 3f76b98
91110

92111

93-
## [1.0.1] - 3 Jan 2020
112+
## v1.0.1 - 3 Jan 2020
94113

95114
- Fix #3 url without db and trailing slash 45d4233
96115
- Fix stream promise - resolve with correct result 730df2c
@@ -99,6 +118,6 @@ Here are some of the new things available, but check the updated docs.
99118
- Fix params usage for file() call without options e4f12a4
100119
- Various Performance improvements
101120

102-
## [1.0.0] - 22 Dec 2019
121+
## v1.0.0 - 22 Dec 2019
103122

104123
- Initial release

0 commit comments

Comments
 (0)