Skip to content

Commit

Permalink
clean(v4): remove warning, lean travis
Browse files Browse the repository at this point in the history
  • Loading branch information
sushantdhiman committed Feb 15, 2018
1 parent 71770de commit 9e91282
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 31 deletions.
11 changes: 1 addition & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,9 @@ jobs:
include:
- stage: tests
node_js: 4
env: DIALECT=mysql SEQUELIZE=3.30.4
- stage: tests
node_js: 4
env: DIALECT=postgres SEQUELIZE=3.30.4
- stage: tests
node_js: 4
env: DIALECT=sqlite SEQUELIZE=3.30.4
- stage: tests
node_js: 6
env: DIALECT=postgres SEQUELIZE=latest
- stage: tests
node_js: 6
node_js: 4
env: DIALECT=sqlite SEQUELIZE=latest

before_script:
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@ Sequelize CLI is always looking for contributions. You can help us with fixing b

Please read [contributing documentation](CONTRIBUTING.md)

## Sequelize Support

CLI v3 fully supports Sequelize v3. Support for Sequelize v4 is still experimental.

Full support for Sequelize v4 is coming soon with [Sequelize CLI v4](https://github.com/sequelize/cli/issues/441)

## Documentation

- [Migrations Documentation](http://docs.sequelizejs.com/manual/tutorial/migrations.html)
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"cli-color": "^1.2.0",
"fs-extra": "^5.0.0",
"js-beautify": "^1.7.4",
"lodash": "^4.17.4",
"lodash": "^4.17.5",
"resolve": "^1.5.0",
"umzug": "^2.1.0",
"yargs": "^8.0.2"
Expand All @@ -27,10 +27,10 @@
"mocha": "^3.5.0",
"mysql": "^2.15.0",
"nodeify": "^1.0.1",
"pg": "^6.*",
"pg-hstore": "^2.3.2",
"sequelize": "^4.*",
"sqlite3": "^3.1.8",
"pg": "^7.*",
"pg-hstore": "^2.x",
"sequelize": "^4.x",
"sqlite3": "^3.x",
"through2": "^2.0.3"
},
"options": {
Expand Down
10 changes: 0 additions & 10 deletions src/helpers/view-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,6 @@ module.exports = {
this.log();
this.log(clc.underline('Sequelize CLI [' + versions.join(', ') + ']'));
this.log();

// Remove in v4
if (helpers.version.getOrmVersion().match(/^4./)) {
this.warn(
'This version of Sequelize CLI is not ' +
'fully compatible with Sequelize v4. ' +
'https://github.com/sequelize/cli#sequelize-support'
);
this.log();
}
},

log () {
Expand Down

0 comments on commit 9e91282

Please sign in to comment.