1. 31 7月, 2018 2 次提交
  2. 29 7月, 2018 1 次提交
  3. 27 7月, 2018 7 次提交
  4. 25 7月, 2018 1 次提交
  5. 23 7月, 2018 2 次提交
  6. 21 7月, 2018 3 次提交
  7. 19 7月, 2018 5 次提交
  8. 16 7月, 2018 2 次提交
  9. 13 7月, 2018 1 次提交
  10. 09 7月, 2018 2 次提交
  11. 05 7月, 2018 3 次提交
  12. 04 7月, 2018 2 次提交
  13. 03 7月, 2018 1 次提交
    • R
      Don't share seen object cache between different join nodes in eager loading · d9dcae34
      Ryuta Kamizono 提交于
      Currently, the seen object cache is shared if join nodes have the same
      target class. But it is a wrong assumption, we can't share the seen
      object cache between different join nodes (e.g. `:readonly_account` and
      `:accounts` have the same target class `Account`, but the instances
      have the different state `readonly`).
      
      Fixes #26805.
      Closes #27737.
      d9dcae34
  14. 30 6月, 2018 1 次提交
  15. 29 6月, 2018 2 次提交
  16. 25 6月, 2018 1 次提交
  17. 21 6月, 2018 1 次提交
    • Y
      Merge pull request #33172 from... · 63f92585
      Yuji Yaginuma 提交于
      Merge pull request #33172 from thomasdziedzic-pd/add-use_authenticated_message_encryption-documentation
      
      add documentation for config.active_support.use_authenticated_message_encryption
      63f92585
  18. 20 6月, 2018 1 次提交
    • K
      Convert hashes into parameters (#33076) · 3c042646
      Kevin Sjöberg 提交于
      * Convert hashes into parameters
      
      Ensure `ActionController::Parameters#transform_values` and
      `ActionController::Parameters#transform_values!` converts hashes into
      parameters.
      
      * fixup! Convert hashes into parameters
      
      [Rafael Mendonça França + Kevin Sjöberg]
      3c042646
  19. 19 6月, 2018 2 次提交
    • R
      Ensure to calculate column aliases after all table aliases are constructed · 50036e67
      Ryuta Kamizono 提交于
      Currently, column aliases which is used for eager loading are calculated
      before constructing all table aliases in FROM clause.
      
      `JoinDependency#join_constraints` constructs table aliases for `joins`
      first, and then always re-constructs table aliases for eager loading.
      
      If both `joins` and eager loading are given a same table association,
      the re-construction would cause the discrepancy between column aliases
      and table aliases.
      
      To avoid the discrepancy, the column aliases should be calculated after
      all table aliases are constructed.
      
      Fixes #30603.
      50036e67
    • E
      Merge pull request #33148 from kamipo/backport_33107 · ea5b5f89
      Eileen M. Uchitelle 提交于
      5-2-stable: Fix `touch` option to behave consistently with `Persistence#touch` method
      ea5b5f89