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

  1. 28 May, 2016 2 commits
    • Make instances instanceof Model, with ES6 classes (#5924) · d2545644
      * Make Instance an ES6 class
      
      * Add esversion: 6 to jshintrc
      
      * Make Model an ES6 class
      
      * Merge Model class into Instance class
      
      * Rename instance.js to model.js
      
      * Remove name parameter from Model.init()
      
      The name is set when subclassing the Model class
      
      * Change sequelize.define() to a Model class factory
      
      * Delete model.js
      
      * Remove Model.Instance and Model.prototype.Model
      
      * Fix JSHint issue
      
      * Remove leftover require('./instance')
      
      * Fix reference to old Instance class
      
      * Remove references to old Instance class from main module
      
      * Reorder imports to hopefully trigger Travis Build
      
      * Fix _addOptionalClassMethods call
      
      * Fix more references to .Instance
      
      * Correct uses of .Model
      
      * Fix use of this in closure
      
      * Fix usage of instanceof Model
      
      * Fix usage of .Model
      
      * Fix usage of this in closure
      
      * Fix usage of $Model
      
      * Fix test for `plain` option
      
      * Fix uses of .$Model
      
      * Fix hooks
      
      * Fix global hooks
      
      * Make more tests pass
      
      * Make more tests pass
      
      * Fix Model.prototype references in findone test
      
      * Change Model.schema()
      
      * Fix instanceof checks in belongs-to-many association
      
      * Fix Model.scope()
      
      * Remove callback support from hooks
      
      * Fix instanceof Model checks
      
      * Fix usage of instanceof Model
      
      * Change another occurence of .Model.name to .constructor.name
      
      * Replace .constructor by .Model again
      
      * Fix this inside closure
      
      * Change test cosntructor assertions to instanceof checks
      Felix Becker committed
  2. 25 May, 2016 2 commits
  3. 24 May, 2016 7 commits
  4. 23 May, 2016 5 commits
    • [ci skip] Model#truncate - Fixing documentation formatting (#5933) · ebec7a9f
      * Model#truncate - Fixing documentation formatting
      
      * Fixing code comment
      gtelljohann committed
    • Update changelog.md · 4460c13f
      Mick Hansen committed
    • Adding the ability to log warnings if they are present in MySQL. (#5902) · f274ebaf
      * Adding the ability to log warnings if they are present in MySQL.
      
      * Reset spy between tests...
      
      * Pass options over. Make changes for jshint.
      
      * Ack, forgot debug code.
      
      * Finishing up, added tests. Refactored promise chain a little to support the new logging.
      
      * Fixed automated test issue.
      
      * Changes per pull request feedback.
      
      * Adding the ability to log warnings if they are present in MySQL.
      
      * Pass options over. Make changes for jshint.
      
      * Rebased.
      
      * Adding the ability to log warnings if they are present in MySQL.
      
      * Pass options over. Make changes for jshint.
      
      * Finishing up, added tests. Refactored promise chain a little to support the new logging.
      
      * Fixed automated test issue.
      
      * Changes per pull request feedback.
      
      * Fixing per tests, conflicts, and formatting requests from pull request.
      
      * Fixed issue (hopefully) with the bad regex in the test.
      
      * Changed test to being MySQL only.
      
      * Adding the ability to log warnings if they are present in MySQL.
      
      * Reset spy between tests...
      
      * Pass options over. Make changes for jshint.
      
      * Ack, forgot debug code.
      
      * Adding the ability to log warnings if they are present in MySQL.
      
      * Adding the ability to log warnings if they are present in MySQL.
      
      * Pass options over. Make changes for jshint.
      
      * Pass options over. Make changes for jshint.
      
      * Finishing up, added tests. Refactored promise chain a little to support the new logging.
      
      * Finishing up, added tests. Refactored promise chain a little to support the new logging.
      
      * Fixed automated test issue.
      
      * Fixed automated test issue.
      
      * Changes per pull request feedback.
      
      * Changes per pull request feedback.
      
      * Rebased.
      
      * Fixing per tests, conflicts, and formatting requests from pull request.
      
      * Fixed issue (hopefully) with the bad regex in the test.
      
      * Changed test to being MySQL only.
      Michael D. Stemle, Jr committed
  5. 19 May, 2016 1 commit
  6. 18 May, 2016 6 commits
  7. 17 May, 2016 3 commits
  8. 16 May, 2016 13 commits
  9. 13 May, 2016 1 commit
    • One to one association batching (#5879) · eca67e85
      * add(associations): make belongsTo getter batch friendly
      
      * add(associations): make belongsTo getter batch friendly
      
      * add(associations): make hasOne getter batch friendly
      
      * variable
      
      * readd scope for has one
      
      * reintroduce options.limit = null to fix mssql
      Mick Hansen committed