Skip to content

Improve error messages and objects around Transaction commit/rollback #480

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 21 commits into from
Aug 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f87463e
Enable code coverage statistics
ali-ince Jul 31, 2019
ce7e252
Pull stream observers into protocol implementations
ali-ince Jul 31, 2019
cd47b7c
Initial reactive session and transaction
ali-ince Aug 8, 2019
0c2b7b9
Added support for transaction functions
ali-ince Aug 9, 2019
3cc34e3
Default to unencrypted connections and skip some related tests for 4.0
ali-ince Aug 9, 2019
8ff27cb
Skip test on previous server versions
ali-ince Aug 9, 2019
94fdad0
Improve documentation
ali-ince Aug 12, 2019
5dbb41d
Update README
ali-ince Aug 12, 2019
627e9d1
Add type definitions for reactive API
ali-ince Aug 13, 2019
8d88bbc
Update README
ali-ince Aug 13, 2019
e753bdd
Make transaction commit and rollback return standard promises
ali-ince Aug 15, 2019
00632b4
Make channels and connections Promise aware for close operations
ali-ince Aug 16, 2019
07ec4cb
Modify driver.close() and related internals to return Promise
ali-ince Aug 21, 2019
2589eb6
Pass specified bookmark down to the discovery invocation
ali-ince Aug 22, 2019
9d930b7
Make TRUST_SYSTEM_CA_SIGNED_CERTIFICATES the default when encrypted
ali-ince Aug 23, 2019
ac9de13
Add a test to verify encryption and tls level combinations
ali-ince Aug 23, 2019
6d46519
Make thrown errors actual Error objects and simplify messages
ali-ince Aug 23, 2019
9ad9e33
Address review comments
ali-ince Aug 27, 2019
2d0f06a
Update branch default server and fix environment variable naming
ali-ince Aug 27, 2019
e567365
Fixes for npm audit
ali-ince Aug 27, 2019
981c311
Upgrade dependencies
ali-ince Aug 27, 2019
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
11 changes: 9 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
]
],
"plugins": [
"@babel/plugin-transform-runtime"
]
"@babel/plugin-transform-runtime",
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
}
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@ node_modules
docs/build
.npmrc
*.iml
/lib
/lib
.nyc_output
coverage
.vscode
*.code-workspace
4 changes: 4 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "@istanbuljs/nyc-config-babel",
"reporter": ["text", "lcov"]
}
Loading