不要怂,就是干,撸起袖子干!

Commit 5a6cf750 by Mick Hansen

Merge branch 'master' into milestones/2.0.0

2 parents 3a614504 f5931ac6
...@@ -6,6 +6,7 @@ Notice: All 1.7.x changes are present in 2.0.x aswell ...@@ -6,6 +6,7 @@ Notice: All 1.7.x changes are present in 2.0.x aswell
- improves handling of uncaught errors in eventemitter [#1245](https://github.com/sequelize/sequelize/pull/1245) - improves handling of uncaught errors in eventemitter [#1245](https://github.com/sequelize/sequelize/pull/1245)
- fixes bug with mysql replication and pool settings [#1251](https://github.com/sequelize/sequelize/pull/1251) - fixes bug with mysql replication and pool settings [#1251](https://github.com/sequelize/sequelize/pull/1251)
- through models created by N:M associations no longer inherit hooks [#1263](https://github.com/sequelize/sequelize/issues/1263) - through models created by N:M associations no longer inherit hooks [#1263](https://github.com/sequelize/sequelize/issues/1263)
- .col()/.literal()/etc now works with findAll [#1249](https://github.com/sequelize/sequelize/issues/1249)
# v2.0.0 (alpha1) # # v2.0.0 (alpha1) #
- [FEATURE] async validations. [#580](https://github.com/sequelize/sequelize/pull/580). thanks to Interlock - [FEATURE] async validations. [#580](https://github.com/sequelize/sequelize/pull/580). thanks to Interlock
......
...@@ -858,7 +858,7 @@ describe(Support.getTestDialectTeaser("DAOFactory"), function () { ...@@ -858,7 +858,7 @@ describe(Support.getTestDialectTeaser("DAOFactory"), function () {
}) })
}) })
it.only('should be possible to order by sequelize.col()', function (done) { it('should be possible to order by sequelize.col()', function (done) {
var self = this var self = this
var Company = this.sequelize.define('Company', { var Company = this.sequelize.define('Company', {
name: Sequelize.STRING name: Sequelize.STRING
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!