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

Commit 100397ec by Sascha Depold

Remove references to winston

1 parent f7c9be39
...@@ -11,7 +11,7 @@ Notice: All 1.7.x changes are present in 2.0.x aswell ...@@ -11,7 +11,7 @@ Notice: All 1.7.x changes are present in 2.0.x aswell
- [BUG] Fix a case where createdAt timestamp would not be set when updatedAt was disabled Thanks to @fixe [#1543](https://github.com/sequelize/sequelize/pull/1543) - [BUG] Fix a case where createdAt timestamp would not be set when updatedAt was disabled Thanks to @fixe [#1543](https://github.com/sequelize/sequelize/pull/1543)
- [BUG] Fix a case where timestamps were not being write protected in `set` when underscored=true. janmeier [#1523](https://github.com/sequelize/sequelize/pull/1523) - [BUG] Fix a case where timestamps were not being write protected in `set` when underscored=true. janmeier [#1523](https://github.com/sequelize/sequelize/pull/1523)
- [FEATURE/BUG] Prefetching/includes now fully support schemas - [FEATURE/BUG] Prefetching/includes now fully support schemas
- [FEATURE] Logging is now using winston and can therefore be configured to use files and other things. sdepold. [#1566](https://github.com/sequelize/sequelize/pull/1566) - [FEATURE] Centralize logging. [#1566](https://github.com/sequelize/sequelize/pull/1566)
#### Backwards compatability changes #### Backwards compatability changes
......
...@@ -10,7 +10,6 @@ var url = require("url") ...@@ -10,7 +10,6 @@ var url = require("url")
, TransactionManager = require('./transaction-manager') , TransactionManager = require('./transaction-manager')
, QueryTypes = require('./query-types') , QueryTypes = require('./query-types')
, sequelizeErrors = require('./errors') , sequelizeErrors = require('./errors')
, winston = require('winston')
module.exports = (function() { module.exports = (function() {
/** /**
......
...@@ -52,8 +52,7 @@ ...@@ -52,8 +52,7 @@
"sql": "~0.35.0", "sql": "~0.35.0",
"circular-json": "~0.1.5", "circular-json": "~0.1.5",
"bluebird": "~1.0.0", "bluebird": "~1.0.0",
"node-uuid": "~1.4.1", "node-uuid": "~1.4.1"
"winston": "~0.7.3"
}, },
"devDependencies": { "devDependencies": {
"sqlite3": "~2.1.12", "sqlite3": "~2.1.12",
......
var chai = require('chai') var chai = require('chai')
, sinonChai = require("sinon-chai") , sinonChai = require("sinon-chai")
, sinon = require('sinon') , sinon = require('sinon')
, winston = require('winston')
, fs = require('fs') , fs = require('fs')
, path = require('path') , path = require('path')
, expect = chai.expect , expect = chai.expect
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!