Skip to content
This repository was archived by the owner on Feb 25, 2022. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jspizziri/sequelize-connect
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fd9df97c46227dcc88f0d89f416c3280f09cb170
Choose a base ref
...
head repository: jspizziri/sequelize-connect
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 030614c1fc5002fd1a85ef782a3c250129b58842
Choose a head ref
  • 13 commits
  • 12 files changed
  • 2 contributors

Commits on May 19, 2016

  1. Copy the full SHA
    7a9b26a View commit details

Commits on May 21, 2016

  1. Copy the full SHA
    ae90fb6 View commit details
  2. Copy the full SHA
    ac78c85 View commit details
  3. chore(Updated Changelog):

    jspizziri committed May 21, 2016
    Copy the full SHA
    fc84ab9 View commit details
  4. Copy the full SHA
    813d02b View commit details

Commits on May 5, 2018

  1. Copy the full SHA
    6362133 View commit details
  2. Copy the full SHA
    c1378ee View commit details
  3. 2.1.0

    jspizziri committed May 5, 2018
    Copy the full SHA
    6c9d291 View commit details

Commits on Jun 13, 2018

  1. Copy the full SHA
    04107e4 View commit details

Commits on Jun 17, 2018

  1. Merge pull request #18 from jacob-lassen/lodash-nsp-fix

    Depend on lodash.flatten instead of lodash
    jspizziri authored Jun 17, 2018
    Copy the full SHA
    c2c6fe9 View commit details
  2. 2.1.1

    jspizziri committed Jun 17, 2018
    Copy the full SHA
    5df9e79 View commit details
  3. Copy the full SHA
    c55677f View commit details
  4. Copy the full SHA
    030614c View commit details
Showing with 3,514 additions and 271 deletions.
  1. +1 −0 .babelrc
  2. +38 −0 .eslintrc
  3. +1 −0 .gitignore
  4. +88 −0 CHANGELOG.md
  5. +212 −125 README.md
  6. +5 −1 index.js
  7. +0 −74 lib/connect.js
  8. +0 −62 lib/discover.js
  9. +2,952 −0 package-lock.json
  10. +18 −9 package.json
  11. +112 −0 src/Connection.js
  12. +87 −0 src/Discoverable.js
1 change: 1 addition & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ "presets": ["env"] }
38 changes: 38 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true,
"browser": true,
"mocha": true
},
"rules": {
"eqeqeq": 2,
"no-caller": 2,
"no-else-return": 2,
"no-eq-null": 2,
"quotes": "single",
"no-new-func": 2,
"camelcase": [2, "always"],
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
"strict": [2, "global"],
"comma-spacing": [2, {"before": false, "after": true}],
"indent": [2, 4],
"key-spacing": [2, { "beforeColon": false, "afterColon": true, "align": "value" }],
"no-mixed-spaces-and-tabs": [2, "smart-tabs"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "always"],
"space-in-brackets": [2, "always", {
"singleValue": false,
"objectsInArrays": true,
"arraysInArrays": true,
"arraysInObjects": true,
"objectsInObjects": true,
"propertyName": false
}],
"space-in-parens": [2, "never"],
"space-infix-ops": 2,
"space-return-throw-case": 2,
"dot-notation": 0
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist/
nbproject/
node_modules/
88 changes: 88 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,95 @@
<a name="2.1.1"></a>
## [2.1.1](https://github.com/jspizziri/sequelize-connect/compare/v2.1.0...v2.1.1) (2018-06-17)



<a name="2.1.0"></a>
# [2.1.0](https://github.com/jspizziri/sequelize-connect/compare/v2.0.0...v2.1.0) (2018-05-05)



<a name="2.0.0"></a>
# [2.0.0](https://github.com/jspizziri/sequelize-connect/compare/v1.3.0...v2.0.0) (2016-05-21)


### Features

* **lib:** Rethrow error after logging it ([02ee4b2](https://github.com/jspizziri/sequelize-connect/commit/02ee4b2)), closes [#8](https://github.com/jspizziri/sequelize-connect/issues/8)



<a name="1.2.2"></a>
## [1.2.2](https://github.com/jspizziri/sequelize-connect/compare/v1.2.1...v1.2.2) (2016-04-01)


### Features

* **lib:** Make discover property accept string or array ([f5855a3](https://github.com/jspizziri/sequelize-connect/commit/f5855a3))



<a name="1.2.1"></a>
## [1.2.1](https://github.com/jspizziri/sequelize-connect/compare/v1.2.0...v1.2.1) (2016-03-19)


### Bug Fixes

* **connect:** Expose models ([cc94da9](https://github.com/jspizziri/sequelize-connect/commit/cc94da9))



<a name="1.2.0"></a>
# [1.2.0](https://github.com/jspizziri/sequelize-connect/compare/v1.1.0...v1.2.0) (2015-10-25)



<a name="1.1.0"></a>
# [1.1.0](https://github.com/jspizziri/sequelize-connect/compare/v1.0.0...v1.1.0) (2015-10-25)



<a name="1.0.0"></a>
# [1.0.0](https://github.com/jspizziri/sequelize-connect/compare/v0.2.5...v1.0.0) (2015-10-24)



<a name="0.2.5"></a>
## [0.2.5](https://github.com/jspizziri/sequelize-connect/compare/v0.2.4...v0.2.5) (2015-10-17)



<a name="0.2.4"></a>
## [0.2.4](https://github.com/jspizziri/sequelize-connect/compare/v0.2.3...v0.2.4) (2015-03-18)



<a name="0.2.2"></a>
## [0.2.2](https://github.com/jspizziri/sequelize-connect/compare/v0.2.1...v0.2.2) (2015-03-02)



<a name="0.2.1"></a>
## [0.2.1](https://github.com/jspizziri/sequelize-connect/compare/v0.2.0...v0.2.1) (2015-02-06)



<a name="0.1.4"></a>
## [0.1.4](https://github.com/jspizziri/sequelize-connect/compare/v0.1.3...v0.1.4) (2015-01-21)



<a name="0.1.3"></a>
## [0.1.3](https://github.com/jspizziri/sequelize-connect/compare/v0.1.2...v0.1.3) (2015-01-21)



<a name="0.1.2"></a>
## [0.1.2](https://github.com/jspizziri/sequelize-connect/compare/v0.1.1...v0.1.2) (2015-01-20)



<a name="0.1.0"></a>
# 0.1.0 (2015-01-20)



Loading