diff --git a/.travis.yml b/.travis.yml index 3e054cd1..f4088a45 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/README.md b/README.md index bcbfbe1b..6b87e945 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/package.json b/package.json index ade43258..44f00a6f 100644 --- a/package.json +++ b/package.json @@ -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" @@ -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": { diff --git a/src/helpers/view-helper.js b/src/helpers/view-helper.js index 16e09670..c7ba254c 100644 --- a/src/helpers/view-helper.js +++ b/src/helpers/view-helper.js @@ -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 () {