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

  1. 26 May, 2016 1 commit
  2. 16 May, 2016 3 commits
  3. 13 May, 2016 5 commits
    • 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
    • Improve validation when dealing with non-strings (#5861) · 80e1774d
      * Improve validation when dealing with non-strings
      
      validator@5.0.0+ has stopped coercing input values as strings and since
      version 4, the library has been printing deprecation notices everytime a
      non-string is passed to it.
      
      All `validate` functions now correctly handle theses cases by delegating
      this work to lodash functions.
      
      * Coerce number values when validating
      Rui Marinho committed
    • Remove uneccesary options tests (#5875) · 45b9990e
      * Remove unneccesary tests checking options object not modified
      
      These tests are now performed universally by the tests support shim
      
      * Tidy tests code
      overlookmotel committed
    • Improving support for SQL Server 2008 (#5616) · 7af83eb1
      * Updating MSSQL version query to return semver compatible string
      
      * Altering query builder to handle sql server 2008
      
      Use TOP instead of LIMIT for queries against SQL server <11.0
      
      * Refactor abstract query builder to support overriding select fragments
      
      * Adding OFFSET support for simple queries in SQL Server 2008
      
      Nested queries still fail due to how WITH() queries must be defined
      
      * Altering OFFSET support for SQL Server 2008 to enable complex queries
      
      * Updating Docker to Node v5
      
      Adding shortcut for running integration tests in containers
      
      * Updating legacy SQL server OFFSET query to support WHERE clauses
      
      * Adding rebuild of WHERE clauses for OFFSET
      
      * Add proper handling for nested ORDER BY for SQL Server
      
      * Moving field includes to outer query for SQL server OFFSET
      
      * Changing semver comparison
      
      * Making semver.valid check before using version
      
      * Extracting query orders and deleting duplicate code
      
      * Fixing lint problems
      
      * Adding unit tests and documentation for SQL limit/offset
      
      * Fixing lint problems
      
      * Tweaking query build loop and renaming sql fragment builder
      Randall Crock committed
  4. 12 May, 2016 3 commits
  5. 10 May, 2016 1 commit
  6. 09 May, 2016 1 commit
  7. 08 May, 2016 2 commits
  8. 06 May, 2016 5 commits
  9. 05 May, 2016 2 commits
  10. 04 May, 2016 1 commit
  11. 03 May, 2016 5 commits
  12. 02 May, 2016 1 commit
  13. 29 Apr, 2016 1 commit
  14. 27 Apr, 2016 4 commits
  15. 26 Apr, 2016 3 commits
  16. 23 Apr, 2016 1 commit
  17. 20 Apr, 2016 1 commit
    • Enable type validation for all queries (#5713) · cf4fb27e
      * Refactor type validation on value escape
      
      * Fix type validation for a list of values
      
      * Fix type validation for incomplete UUIDs
      
      Useful for instance for fuzzy searching (e.g. the LIKE comparator),
      where anything that isn't the complete UUID would otherwise fail. Accept
      strings as incomplete UUIDs for those scenarios.
      
      * Enable type validation for all queries
      Ricardo Lopes committed