-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: mongodb replica set support (#43)
BREAKING CHANGE: Now defaults to new mongo db client options `useNewUrlParser` and `useUnifiedTopology`. Travis changed to test last two Node versions, 12 and 14. * feat: mongodb replica set support * chore: add 10 to tests * fix: lock to sourced 2.0.5 * fix: sourced bug - upgrade to fixed 2.0.7 * fix: [email protected] * chore: update travis file * chore: rm debug log statements * chore: rm debug log statements * fix: make options configurable * fix: cherry pick changes from @debianw - PR #35 Co-authored-by: Waly <[email protected]>
- Loading branch information
1 parent
84e0283
commit 34ce620
Showing
5 changed files
with
2,655 additions
and
2,502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,23 @@ | ||
language: node_js | ||
node_js: | ||
- 8 | ||
- 10 | ||
- 11 | ||
|
||
- '12' | ||
- '14' | ||
cache: npm | ||
notifications: | ||
email: false | ||
|
||
before_install: | ||
- npm install -g codecov | ||
script: | ||
- make test | ||
after_success: | ||
- npm install -g codecov | ||
- codecov | ||
|
||
branches: | ||
except: | ||
- '/^v\d+\.\d+\.\d+$/' | ||
|
||
jobs: | ||
include: | ||
- stage: deploy | ||
if: branch == master && !fork | ||
node_js: node # pre-installed version | ||
script: | ||
- npm install -g semantic-release | ||
- semantic-release | ||
- semantic-release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.