Skip to content

Commit f3f40c9

Browse files
committed
Update changelog v3.2.1
1 parent 43f1442 commit f3f40c9

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v3.2.1 - 15 May 2022
4+
- Exclude target_session_attrs from connection obj 43f1442
5+
36
## v3.2.0 - 15 May 2022
47
- Add `sslmode=verify-full` support e67da29
58
- Add support for array of fragments 342bf55

cjs/src/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,8 @@ function parseOptions(a, b) {
397397
prepare : true,
398398
debug : false,
399399
fetch_types : true,
400-
publications : 'alltables'
400+
publications : 'alltables',
401+
target_session_attrs: null
401402
}
402403

403404
return {

deno/src/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,8 @@ function parseOptions(a, b) {
398398
prepare : true,
399399
debug : false,
400400
fetch_types : true,
401-
publications : 'alltables'
401+
publications : 'alltables',
402+
target_session_attrs: null
402403
}
403404

404405
return {

0 commit comments

Comments
 (0)