Skip to content

Commit 9e91282

Browse files
committed
clean(v4): remove warning, lean travis
1 parent 71770de commit 9e91282

File tree

4 files changed

+6
-31
lines changed

4 files changed

+6
-31
lines changed

.travis.yml

+1-10
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,9 @@ jobs:
1111
include:
1212
- stage: tests
1313
node_js: 4
14-
env: DIALECT=mysql SEQUELIZE=3.30.4
15-
- stage: tests
16-
node_js: 4
17-
env: DIALECT=postgres SEQUELIZE=3.30.4
18-
- stage: tests
19-
node_js: 4
20-
env: DIALECT=sqlite SEQUELIZE=3.30.4
21-
- stage: tests
22-
node_js: 6
2314
env: DIALECT=postgres SEQUELIZE=latest
2415
- stage: tests
25-
node_js: 6
16+
node_js: 4
2617
env: DIALECT=sqlite SEQUELIZE=latest
2718

2819
before_script:

README.md

-6
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,6 @@ Sequelize CLI is always looking for contributions. You can help us with fixing b
7272

7373
Please read [contributing documentation](CONTRIBUTING.md)
7474

75-
## Sequelize Support
76-
77-
CLI v3 fully supports Sequelize v3. Support for Sequelize v4 is still experimental.
78-
79-
Full support for Sequelize v4 is coming soon with [Sequelize CLI v4](https://github.com/sequelize/cli/issues/441)
80-
8175
## Documentation
8276

8377
- [Migrations Documentation](http://docs.sequelizejs.com/manual/tutorial/migrations.html)

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"cli-color": "^1.2.0",
1111
"fs-extra": "^5.0.0",
1212
"js-beautify": "^1.7.4",
13-
"lodash": "^4.17.4",
13+
"lodash": "^4.17.5",
1414
"resolve": "^1.5.0",
1515
"umzug": "^2.1.0",
1616
"yargs": "^8.0.2"
@@ -27,10 +27,10 @@
2727
"mocha": "^3.5.0",
2828
"mysql": "^2.15.0",
2929
"nodeify": "^1.0.1",
30-
"pg": "^6.*",
31-
"pg-hstore": "^2.3.2",
32-
"sequelize": "^4.*",
33-
"sqlite3": "^3.1.8",
30+
"pg": "^7.*",
31+
"pg-hstore": "^2.x",
32+
"sequelize": "^4.x",
33+
"sqlite3": "^3.x",
3434
"through2": "^2.0.3"
3535
},
3636
"options": {

src/helpers/view-helper.js

-10
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,6 @@ module.exports = {
1616
this.log();
1717
this.log(clc.underline('Sequelize CLI [' + versions.join(', ') + ']'));
1818
this.log();
19-
20-
// Remove in v4
21-
if (helpers.version.getOrmVersion().match(/^4./)) {
22-
this.warn(
23-
'This version of Sequelize CLI is not ' +
24-
'fully compatible with Sequelize v4. ' +
25-
'https://github.com/sequelize/cli#sequelize-support'
26-
);
27-
this.log();
28-
}
2919
},
3020

3121
log () {

0 commit comments

Comments
 (0)