1. 08 10月, 2020 4 次提交
  2. 07 10月, 2020 1 次提交
  3. 06 10月, 2020 5 次提交
  4. 05 10月, 2020 7 次提交
  5. 03 10月, 2020 3 次提交
  6. 02 10月, 2020 4 次提交
  7. 01 10月, 2020 1 次提交
  8. 30 9月, 2020 2 次提交
  9. 29 9月, 2020 3 次提交
  10. 28 9月, 2020 1 次提交
  11. 26 9月, 2020 2 次提交
  12. 25 9月, 2020 4 次提交
  13. 24 9月, 2020 3 次提交
    • S
      Remove Random Blank Line in create-next-app (#17328) · c5b20d06
      Sam Poder 提交于
      There was a blank line, this PR removes it :D
      c5b20d06
    • J
      v9.5.4-canary.21 · 47b7e0b3
      Joe Haddad 提交于
      47b7e0b3
    • J
      Improve server performance by skipping decode/re-encode (#17323) · c351f615
      Joe Haddad 提交于
      Prior to this pull request, Next.js would immediately decode all URLs sent to its server (via `path-match`).
      
      This was rarely needed, and Next.js would typically re-encode the incoming request right away (see all the `encodeURIComponent`s removed in PR diff). This adds unnecessary performance overhead.
      
      Long term, this will also help prevent weird encoding edge-cases like #10004, #10022, #11371, et al.
      
      ---
      
      No new tests are necessary for this change because we've extensively tested these edge cases with existing tests.
      One test was updated to reflect that we skip decoding in a 404 scenario.
      
      Let's see if all the existing tests pass!
      c351f615