Skip to content

v3 #259

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 55 commits into from
Mar 24, 2022
Merged

v3 #259

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
5704fe1
Rewrite
porsager Sep 21, 2021
872529a
Fix and update types (#257)
Minigugus Jan 12, 2022
8e0812a
Fix transaction edge cases and error handling
porsager Jan 13, 2022
5366d87
Clean up
porsager Jan 13, 2022
963f79c
Handle some edge case errors better
porsager Jan 13, 2022
8da46a3
Fix input arrays as strings
porsager Jan 13, 2022
3962d95
Don't end reserved connections prematurely
porsager Jan 14, 2022
d2a7f08
Add deno entry point
porsager Jan 19, 2022
2e0bc0d
Hint deno types
porsager Jan 19, 2022
1701bac
Fix path for deno mod.js
porsager Jan 19, 2022
4db7f95
Add jsonb helper
porsager Jan 25, 2022
02948a2
Remove support for implicit array parameter expansion
porsager Jan 25, 2022
dc4cca5
Revert to v2 sql.json functionality
porsager Jan 25, 2022
fcf76c8
Reconnect logical replication connnection
porsager Jan 26, 2022
e82a0ca
Properly call errors and clean up streams
porsager Jan 26, 2022
db759fe
Build deno and cjs
porsager Jan 26, 2022
1248ca7
Re-add float8 to number
porsager Feb 2, 2022
445b5fa
Fix wrong dynamic sql concat
porsager Feb 5, 2022
ece705a
Update cjs and deno
porsager Feb 5, 2022
81c5df6
Updated README (#264)
dilan-dio4 Feb 6, 2022
08e3d46
Fix dynamic helper regex (should be case insensitive)
porsager Feb 6, 2022
d1b6f85
Merge branch 'rewrite' of https://github.com/porsager/postgres into r…
porsager Feb 6, 2022
0035d54
Please eslint
porsager Feb 6, 2022
28f7569
Dead link in Readme TOC (#265)
dilan-dio4 Feb 7, 2022
8c662c5
Merge branch 'rewrite' of https://github.com/porsager/postgres into r…
porsager Feb 8, 2022
e29a8c3
Add sql.typed
porsager Feb 8, 2022
f48b2d5
Update logo size
porsager Feb 8, 2022
a5fd8c7
Fix logo size + dark mode
porsager Feb 8, 2022
6381782
Fix early break or return from async iterator cursor
porsager Feb 9, 2022
154e28d
Fix async iterator cursor with rest result
porsager Feb 18, 2022
ae1e908
Fix cjs - fixes #269
porsager Feb 23, 2022
f4a926c
Add rebuilds
porsager Feb 23, 2022
1e09976
Removed PathOrFileDescriptor type of types.d.ts which is undefined be…
dilan-dio4 Mar 2, 2022
c548c94
Fix where in ${ sql(...) } helper
porsager Mar 4, 2022
b180bd9
Merge branch 'rewrite' of https://github.com/porsager/postgres into r…
porsager Mar 4, 2022
5d90a32
Fix keep alive not working after reconnecting
porsager Mar 8, 2022
8a1e3ee
Throw correct error when retrying in transactions - fixes #272
porsager Mar 13, 2022
0aacdb3
First get stack when origin is accessed - fixes #273
porsager Mar 13, 2022
3a8efe7
Fix wrong connection reserved state if initial begin query - fixes #274
porsager Mar 15, 2022
7e0521f
Simplify generic error call
porsager Mar 20, 2022
66a9b3e
Throw on unsafe transactions
porsager Mar 20, 2022
58ecc88
Documentation improvements
porsager Mar 20, 2022
47d0982
Documentation improvements
porsager Mar 20, 2022
4e95748
Smaller documentation fixes
porsager Mar 20, 2022
75c376d
Reorder and readd toc
porsager Mar 20, 2022
f049db4
Build deno + cjs
porsager Mar 20, 2022
14e2993
Fix npm files
porsager Mar 20, 2022
00dd39c
3.0.0-rc.1
porsager Mar 20, 2022
fc1fac5
Mark connection as closed immediately on terminate
porsager Mar 21, 2022
2549e55
fixed docs typos + minor cleanup (#280)
Mar 21, 2022
6e615ae
Revert "Mark connection as closed immediately on terminate"
porsager Mar 21, 2022
315407e
Fix race condition with transactions on end
porsager Mar 23, 2022
5076f60
3.0.0-rc.2
porsager Mar 23, 2022
06b27cd
Fix unlicense
porsager Mar 24, 2022
d15aa0d
Merge branch 'master' into rewrite
porsager Mar 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"node": true
},
"parserOptions": {
"ecmaVersion": 9,
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
Expand Down Expand Up @@ -93,6 +93,7 @@
"Property": true,
"VariableDeclarator": true,
"ImportDeclaration": true,
"TernaryExpressions": true,
"Comments": true
}
}
Expand Down Expand Up @@ -221,7 +222,7 @@
],
"max-params": [
2,
4
5
],
"max-statements-per-line": 0,
"new-cap": [
Expand Down
Loading