File tree 4 files changed +6
-31
lines changed
4 files changed +6
-31
lines changed Original file line number Diff line number Diff line change 11
11
include :
12
12
- stage : tests
13
13
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
23
14
env : DIALECT=postgres SEQUELIZE=latest
24
15
- stage : tests
25
- node_js : 6
16
+ node_js : 4
26
17
env : DIALECT=sqlite SEQUELIZE=latest
27
18
28
19
before_script :
Original file line number Diff line number Diff line change @@ -72,12 +72,6 @@ Sequelize CLI is always looking for contributions. You can help us with fixing b
72
72
73
73
Please read [ contributing documentation] ( CONTRIBUTING.md )
74
74
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
-
81
75
## Documentation
82
76
83
77
- [ Migrations Documentation] ( http://docs.sequelizejs.com/manual/tutorial/migrations.html )
Original file line number Diff line number Diff line change 10
10
"cli-color" : " ^1.2.0" ,
11
11
"fs-extra" : " ^5.0.0" ,
12
12
"js-beautify" : " ^1.7.4" ,
13
- "lodash" : " ^4.17.4 " ,
13
+ "lodash" : " ^4.17.5 " ,
14
14
"resolve" : " ^1.5.0" ,
15
15
"umzug" : " ^2.1.0" ,
16
16
"yargs" : " ^8.0.2"
27
27
"mocha" : " ^3.5.0" ,
28
28
"mysql" : " ^2.15.0" ,
29
29
"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 " ,
34
34
"through2" : " ^2.0.3"
35
35
},
36
36
"options" : {
Original file line number Diff line number Diff line change @@ -16,16 +16,6 @@ module.exports = {
16
16
this . log ( ) ;
17
17
this . log ( clc . underline ( 'Sequelize CLI [' + versions . join ( ', ' ) + ']' ) ) ;
18
18
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
- }
29
19
} ,
30
20
31
21
log ( ) {
You can’t perform that action at this time.
0 commit comments