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

  1. 14 Jun, 2017 2 commits
    • docs: remove links to changelog · 32d7b825
      ESDoc failed to build because there were references to the deleted
      changelog.md file
      Felix Becker committed
    • chore: set up semantic-release (#7777) · 8f39f453
      - Set up semantic-release to automatically release from CI
      - Remove the changelog, which is maintained automatically in GitHub releases from now on
      - Add husky git hooks for validating commit messages with validate-commit-msg
      - Extend contribution guide
      - Adapt GitHub PR template
      - Add readme badge
      
      Closes #6550
      Felix Becker committed
  2. 13 Jun, 2017 2 commits
  3. 12 Jun, 2017 3 commits
  4. 09 Jun, 2017 1 commit
    • add class method "increment" (#7394) · 99d87dff
      * add class method "increment"
      
      Basically moving code from instance method `increment` to class method `increment`.
      
      close #6359
      
      * fix tests. change: require options.where
      Even committed
  5. 08 Jun, 2017 6 commits
  6. 07 Jun, 2017 4 commits
  7. 06 Jun, 2017 2 commits
  8. 04 Jun, 2017 1 commit
  9. 03 Jun, 2017 3 commits
  10. 01 Jun, 2017 1 commit
  11. 31 May, 2017 1 commit
  12. 29 May, 2017 1 commit
  13. 27 May, 2017 2 commits
  14. 20 May, 2017 3 commits
  15. 19 May, 2017 2 commits
  16. 18 May, 2017 1 commit
  17. 16 May, 2017 2 commits
  18. 14 May, 2017 1 commit
    • Polish docs (#7627) · d2baa896
      * Indent Markdown by 2 spaces
      
      Consistent with most examples and our codebase
      
      * Use ES6 (as supported by Node 4) in docs
      Felix Becker committed
  19. 10 May, 2017 1 commit
  20. 08 May, 2017 1 commit
    • 7564 Ordering with JSON attributes (#7565) · c3859940
      * Two birds with one stone.  Adds support for ordering by JSON columns and removes vulnerability for injections on JSON attributes.
      
      * Updates the changelog for the addition of json attributes.
      
      * Fixes lint error with prefer arrow.
      
      * Removes specific error because it may change depending on dialect and engine version.
      
      * Removed duplicate tests and moved location of SQL injection test and find order test.
      
      * Optimizes item.split performance by only performing the split once.
      
      * Fixes test for sqlite dialect json.  JSON is handled differently in sqlite where the json value is extracted from a path.  If the path doesn't exist sqlite returns null instead of throwing an error like postgres.
      Michael Kaufman committed